initial commit

This commit is contained in:
sHa
2024-03-12 16:13:30 +02:00
commit e9ad2f7c64
4 changed files with 77 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.12-alpine
WORKDIR /app
ENV PYTHONPATH=/app
COPY ./requirements.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]