This commit is contained in:
2019-09-24 07:03:15 +02:00
parent b8b98aadb6
commit 91339cb19d
4 changed files with 108 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
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"]