diff options
Diffstat (limited to 'klaus/Dockerfile')
-rwxr-xr-x | klaus/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/klaus/Dockerfile b/klaus/Dockerfile new file mode 100755 index 0000000..bfaca80 --- /dev/null +++ b/klaus/Dockerfile @@ -0,0 +1,11 @@ +FROM jonashaag/klaus:latest +MAINTAINER Eden Attenborough "eda@e.email" +ENV TZ=Europe/London +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + +COPY . /app +WORKDIR /app +RUN pip3 install -r requirements.txt +ENTRYPOINT ["python3"] +CMD ["app.py"] + |