This commit is contained in:
2024-02-14 22:06:20 +01:00
commit e9aaaaf3ff
6 changed files with 183 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.12-slim
ENV PYTHONUNBUFFERED 1
WORKDIR /app
RUN pip install --upgrade pip
COPY ./requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD bash -c "python main.py"