added curl to image for wrapper script

work towards issue #48
This commit is contained in:
Morgan McMillian 2022-12-11 07:01:55 -08:00
parent edd1ef6212
commit 45f621f9af

View file

@ -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