This commit is contained in:
2025-08-05 09:19:34 +08:00
commit 584548d006
1696 changed files with 53855 additions and 0 deletions
@@ -0,0 +1,16 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install tox and dependencies (replace 'your-requirements.txt' with your actual file)
COPY requirements.txt .
COPY requirements-tests.txt .
RUN pip install -r requirements.txt -r requirements-tests.txt
# Copy your project code
COPY . .
# Run Tox tests
CMD ["tox"]