Changed docker image base to Alpine and added curl

This commit is contained in:
Marcin-Ramotowski 2025-06-11 22:15:37 +00:00
parent 479ec4f917
commit 301cf5922e

View File

@ -1,5 +1,6 @@
FROM python:3.11.7-slim-bookworm
FROM python:3.11.7-alpine
WORKDIR /app
COPY api .
RUN apk add --no-cache curl
RUN pip install -r requirements.txt
CMD python3 app.py