From 45f621f9af7c6483daee2a1fa0d3367129d32651 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sun, 11 Dec 2022 07:01:55 -0800 Subject: [PATCH] added curl to image for wrapper script work towards issue #48 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 307c7ee..f15df4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10-slim-bullseye WORKDIR /usr/src/app -RUN apt-get update && apt-get install libmagic-dev -y +RUN apt-get update && apt-get install libmagic-dev curl -y COPY . . RUN pip install --no-cache-dir -r requirements.txt