Dockerfile: Install crudini.

The first container doesn't install it and fails when using the
CUSTOM_CA_CERTIFICATES environment variable.
This commit is contained in:
xificurC
2018-08-30 15:24:07 +02:00
committed by Tim Abbott
parent 0dc18f7ba2
commit 30f518c2ee

View File

@@ -27,7 +27,7 @@ ENV LANG="en_US.UTF-8" \
# Next, we upgrade the base image and add a zulip user
RUN apt-get -q update && \
apt-get -q dist-upgrade -y && \
apt-get -q install -y git sudo ca-certificates apt-transport-https python3 && \
apt-get -q install -y git sudo ca-certificates apt-transport-https python3 crudini && \
useradd -d /home/zulip -m zulip && \
echo 'zulip ALL=(ALL:ALL) NOPASSWD:ALL' >> /etc/sudoers