From 301cf5922e247f23f48ee266da0ca8b80e101314 Mon Sep 17 00:00:00 2001 From: Marcin-Ramotowski Date: Wed, 11 Jun 2025 22:15:37 +0000 Subject: [PATCH] Changed docker image base to Alpine and added curl --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aafa859..396a672 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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