Files
semapform_api/Dockerfile
WorldTeacher 2ee575aff4
Some checks failed
/ build (pull_request) Failing after 11m19s
test: inspired by other Dockerfile
2025-11-25 08:50:07 +01:00

13 lines
198 B
Docker

FROM python:3.13.9-slim
RUN apk update
RUN apk upgrade
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT [ "python", "api_service.py" ]