initial import

This commit is contained in:
Hauke Petersen
2020-01-20 23:12:45 +01:00
parent 2b8f2b8532
commit 009768c8d2
4 changed files with 130 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3-alpine
ADD steckie.py /opt/steckie/
ADD config.yml /opt/steckie/
ADD requirements.txt /opt/steckie
RUN pip install -r /opt/steckie/requirements.txt
WORKDIR /opt/steckie
CMD [ "python", "/opt/steckie/steckie.py" ]