aboutsummaryrefslogtreecommitdiffstats
path: root/klaus/Dockerfile
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-09-19 17:19:13 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2022-09-19 17:19:13 +0100
commitcfa6e98a33e89291b19376e9e1ab25510afdfb7d (patch)
tree90e689d01687dd4e4a8d2d666279b566818d2a0f /klaus/Dockerfile
parent080dca2a578f5c00d5b91e65c43a29cb0f6232e8 (diff)
downloadgit-scripts-cfa6e98a33e89291b19376e9e1ab25510afdfb7d.tar.gz
git-scripts-cfa6e98a33e89291b19376e9e1ab25510afdfb7d.zip
Added metadata file
Diffstat (limited to 'klaus/Dockerfile')
-rwxr-xr-xklaus/Dockerfile11
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"]
+