feat: add the foundation files with a working script

This commit is contained in:
Adam
2026-01-25 09:44:34 +01:00
commit 0bbf01e007
8 changed files with 833 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
# Use an official Python runtime as a parent image
FROM python:3.9-slim
# Set the working directory in the container
WORKDIR /app
# Copy the dependencies file to the working directory
COPY requirements.txt .
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Run main.py when the container launches
CMD ["python", "main.py"]