This commit is contained in:
pika 2025-03-10 18:24:23 +01:00
parent 2e919145ec
commit 9eb8f24845
7 changed files with 114 additions and 0 deletions

12
Dockerfile Normal file
View file

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