This commit is contained in:
2025-09-08 23:40:14 +02:00
commit 3efaddfae1
3 changed files with 56 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# Use Python 3.9 slim image as base
FROM python:3.9-slim
# Set working directory in container
WORKDIR /app
# Copy the application code
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose port (assuming the app runs on port 8000)
EXPOSE 8000
# Run the application
CMD ["python", "main.py"]