pridanie zakladnych funkcionalít

This commit is contained in:
tpikna
2026-04-14 21:00:08 +02:00
parent 8dac76c758
commit 462205c14c
6 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "main:app"]