From 3c7fb0afdb4fbabb922db897300d668f938196f9 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Fri, 10 Nov 2023 17:29:03 -0500 Subject: [PATCH] Adding in ImageMagick and ffmpeg related tools --- aether_fastapi_gunicorn.Dockerfile | 6 ++++++ conf/aether_fastapi_requirements.txt | 1 + 2 files changed, 7 insertions(+) diff --git a/aether_fastapi_gunicorn.Dockerfile b/aether_fastapi_gunicorn.Dockerfile index 4b0546c..0e3dde0 100644 --- a/aether_fastapi_gunicorn.Dockerfile +++ b/aether_fastapi_gunicorn.Dockerfile @@ -5,6 +5,12 @@ LABEL maintainer="Scott Idem " WORKDIR /srv/aether_api +RUN apt-get update; \ + apt-get install -y \ + imagemagick ffmpeg \ + ; \ + rm -rf /var/lib/apt/lists/*; + # RUN apt-get update; \ # apt-get install -y \ # poppler-utils \ diff --git a/conf/aether_fastapi_requirements.txt b/conf/aether_fastapi_requirements.txt index e3dfe17..d83acd9 100644 --- a/conf/aether_fastapi_requirements.txt +++ b/conf/aether_fastapi_requirements.txt @@ -63,6 +63,7 @@ ujson urllib3 uvicorn uvloop +Wand watchfiles watchgod websockets>=11.0.3