Files
bibreminder/Dockerfile
matthias 131a90a0e0
All checks were successful
continuous-integration/drone/push Build is passing
„Dockerfile“ ändern
2019-09-25 04:42:57 +00:00

14 lines
228 B
Docker

FROM python:3.7
RUN useradd --create-home appuser
COPY requirements.txt /home/appuser
RUN pip install -r /home/appuser/requirements.txt
WORKDIR /home/appuser
USER appuser
COPY bibcheck.py ./
CMD ["python", "./bibcheck.py"]