Cleanup dependencies in docker image
Replace ghostscript with gsfonts, the captcha only needs gsfonts to work.
This commit is contained in:
parent
6f3d68110a
commit
f51ad14c1b
1 changed files with 3 additions and 3 deletions
|
|
@ -2,12 +2,12 @@ FROM ruby:2.4.4-slim-stretch
|
||||||
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive \
|
RUN DEBIAN_FRONTEND=noninteractive \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y -qq \
|
apt-get install -y -qq --no-install-recommends \
|
||||||
build-essential \
|
build-essential \
|
||||||
cmake \
|
cmake \
|
||||||
curl \
|
curl \
|
||||||
ghostscript \
|
|
||||||
git \
|
git \
|
||||||
|
gsfonts \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
libcurl4-openssl-dev \
|
libcurl4-openssl-dev \
|
||||||
libidn11-dev \
|
libidn11-dev \
|
||||||
|
|
@ -16,7 +16,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
|
||||||
libpq-dev \
|
libpq-dev \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
libxml2-dev \
|
libxml2-dev \
|
||||||
libxslt-dev \
|
libxslt1-dev \
|
||||||
nodejs \
|
nodejs \
|
||||||
gosu \
|
gosu \
|
||||||
&& \
|
&& \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue