Files
semapform_api/Dockerfile
WorldTeacher 0d9ffb8539
Some checks failed
/ build (pull_request) Failing after 12m43s
chore: replace apk with apt
2025-11-25 08:59:46 +01:00

13 lines
201 B
Docker

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