3179d98e12
Use `spack pkg changed` and `spack maintainers` to figure out which packages changed and who their maintainers are in a PR. Add any maintainers to the PR as reviewers.
6 lines
113 B
Docker
6 lines
113 B
Docker
FROM python:3.7-alpine
|
|
|
|
RUN pip install pygithub
|
|
|
|
ADD entrypoint.py /entrypoint.py
|
|
ENTRYPOINT ["/entrypoint.py"]
|