Files
Synculous-2/Dockerfile
2026-02-12 22:11:52 -06:00

11 lines
156 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "-m", "api.main"]