aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..f66d997
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,14 @@
1FROM python:bullseye
2
3RUN apt-get update
4RUN apt-get upgrade
5RUN pip install pip -U
6
7WORKDIR /app
8COPY requirements.txt .
9RUN pip install -r requirements.txt
10
11COPY . .
12COPY data/config.py .
13
14CMD ["python", "main.py"]