Files
bibreminder/Dockerfile
2020-01-17 14:27:47 +01: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"]