From 2437b1983630573cca37f55c0a6444f0a6fd2a8f Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Thu, 16 Oct 2025 16:57:41 +1100 Subject: [PATCH] feat: Add curl to container --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 815c5b3..7ae223b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder +RUN apk add curl WORKDIR /app COPY requirements.txt /app @@ -14,4 +15,4 @@ COPY . /app ENTRYPOINT ["python3"] CMD ["main.py"] -FROM builder AS dev-envs \ No newline at end of file +FROM builder AS dev-envs