first charge

This commit is contained in:
2025-04-21 23:55:23 +01:00
parent 4b1d2bd6d5
commit 0d662a03a1
6 changed files with 109 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY . .
# Default command
CMD ["python", "main.py"]