Cleanup dependencies in docker image

Replace ghostscript with gsfonts, the captcha only needs gsfonts to
work.
This commit is contained in:
Benjamin Neff 2020-11-03 02:50:35 +01:00
parent 6f3d68110a
commit f51ad14c1b
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -2,12 +2,12 @@ FROM ruby:2.4.4-slim-stretch
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \
apt-get install -y -qq \
apt-get install -y -qq --no-install-recommends \
build-essential \
cmake \
curl \
ghostscript \
git \
gsfonts \
imagemagick \
libcurl4-openssl-dev \
libidn11-dev \
@ -16,7 +16,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
libpq-dev \
libssl-dev \
libxml2-dev \
libxslt-dev \
libxslt1-dev \
nodejs \
gosu \
&& \