Initial commit

This commit is contained in:
Jack Hadrill
2024-11-12 23:30:05 +00:00
parent 48721a06c3
commit 470427f759
5 changed files with 207 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.12-alpine
# Set the working directory
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
CMD ["python", "app.py"]