updated changes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-09-27 08:45:12 +02:00
parent 999beb6269
commit 92cf128433
14 changed files with 532 additions and 135 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.7.3-stretch
COPY requirements.txt /tmp/
RUN pip install -r /tmp/requirements.txt
COPY . /tmp/infomentor
RUN pip install /tmp/infomentor
RUN useradd --create-home appuser
WORKDIR /home/appuser
USER appuser
VOLUME ["/home/appuser"]
CMD [ "python", "-m", "infomentor" ]