Files
Gitea_Action_Test/Dockerfile
hangpersonal 7fe3cccc90
All checks were successful
CI Workflow / build-and-test (push) Successful in 10s
Docker Build / docker (push) Successful in 49s
Update repo
2025-08-26 00:52:47 -07:00

16 lines
347 B
Docker

# Base image with Python 3.10
FROM python:3.10-slim
# Set work directory inside container
WORKDIR /app
# Copy dependency file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of your code
COPY . .
# Default command (can be overridden in docker run)
CMD ["python3", "main.py"]