From d42dae3263ca3efc8b9646eefe0300a50ea60d67 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Thu, 8 May 2025 12:47:59 +1000 Subject: [PATCH] fix: Add curl to container --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a8fa82..0a627cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,9 @@ COPY . /app # Add mount point for data volume # VOLUME /data -RUN apk add git openssl +RUN apk add git openssl curl ENTRYPOINT ["python3"] CMD ["server.py"] -FROM builder as dev-envs \ No newline at end of file +FROM builder as dev-envs