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
parent
1b3c042552
commit
5b2c1ab472
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue