Re-structure infra folder

This commit is contained in:
2024-07-22 21:09:54 +02:00
parent d7640c2a52
commit be39d5b1d3
8 changed files with 15 additions and 0 deletions

View File

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