very basic dockerfile and continue config

This commit is contained in:
2025-07-08 14:17:37 +00:00
parent c0bfbda048
commit 2df2329e96
3 changed files with 53 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# Use a newer Python version that supports the required package
FROM python:3.10-slim
# Set the working directory
WORKDIR /app
# Copy requirements file
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Run the application
CMD ["python", "server.py"]