Add new exercise

This commit is contained in:
2024-06-16 18:00:16 +02:00
parent d7c1cee2a8
commit 71d0a3c4d8
8 changed files with 358 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"]