Files
soleprint/cfg/amar/link/Dockerfile
buenosairesam c5546cf7fc 1.1 changes
2025-12-29 14:17:53 -03:00

14 lines
197 B
Docker

FROM python:3.11-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application
COPY . .
# Run
CMD ["python", "main.py"]