Files
soleprint/mainroom/link/Dockerfile
2025-12-24 06:23:31 -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"]