diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 14 |
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 @@ | |||
| 1 | FROM python:bullseye | ||
| 2 | |||
| 3 | RUN apt-get update | ||
| 4 | RUN apt-get upgrade | ||
| 5 | RUN pip install pip -U | ||
| 6 | |||
| 7 | WORKDIR /app | ||
| 8 | COPY requirements.txt . | ||
| 9 | RUN pip install -r requirements.txt | ||
| 10 | |||
| 11 | COPY . . | ||
| 12 | COPY data/config.py . | ||
| 13 | |||
| 14 | CMD ["python", "main.py"] | ||
