Add imagemagick dependency to infra scripts.

We already need imagemagick as a dependency, but our local tooling--
notably Docker--does not automatically install it. Further, it tends
to fail silently since the call to `convert` in media.py is wrapped
in a try...except: pass.
remotes/1693045480750635534/spooky-22
Snakes 2022-09-10 03:54:23 -04:00
parent 1b3c042552
commit 5b2c1ab472
Signed by: Snakes
GPG Key ID: E745A82778055C7E
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt update && apt -y upgrade && apt install -y supervisor python3-pip ffmpeg postgresql libpq-dev
RUN apt update && apt -y upgrade && apt install -y supervisor python3-pip ffmpeg imagemagick postgresql libpq-dev
COPY supervisord.conf /etc/supervisord.conf

View File

@ -4,7 +4,7 @@
# reboot
apt -y update
apt -y upgrade
apt -y install git redis-server python3-pip ffmpeg tmux nginx snapd ufw gpg-agent htop
apt -y install git redis-server python3-pip ffmpeg imagemagick tmux nginx snapd ufw gpg-agent htop
git config --global credential.helper store
cd /rDrama