Initial commit: Cocina con Alma - Tandoor + public menu stack

This commit is contained in:
consultoria-as
2026-04-21 07:30:28 +00:00
commit 680aaf4924
9 changed files with 1230 additions and 0 deletions

12
menu-publico/Dockerfile Normal file
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 . .
EXPOSE 5000
CMD ["gunicorn", "-w", "2", "-b", "0.0.0.0:5000", "app:app"]