aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index b76d5b8..28d0eef 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,10 +1,16 @@
-FROM archlinux:latest
+#FROM archlinux:latest
+#RUN pacman -Sy python-pip --noconfirm; pacman -Scc --noconfirm
+
+FROM python:3.8-buster
+
+RUN pip install fbchat
RUN mkdir /app
WORKDIR /app
ADD static /app/static
ADD easybridge.jpg /app/easybridge.jpg
+ADD external /app/external
ADD easybridge /app/easybridge
ADD templates /app/templates
-ENTRYPOINT ["/app/easybridge"]
+CMD "/app/easybridge"