intermediate commit
Build and Push Docker Images / build-and-push (push) Failing after 37s

This commit is contained in:
2025-11-17 21:56:21 +01:00
parent b516c942df
commit d72ee4a7d2
8 changed files with 667 additions and 13 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.12-slim
# Set workdir
WORKDIR /app
# Copy requirements first (better caching)
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY . .
# Run script
CMD ["python", "main.py"]