update Dockerfile (#11461)

This commit is contained in:
s3krit 2020-02-06 18:13:58 +01:00 committed by GitHub
parent 090c3322a5
commit 77f755bbe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -21,10 +21,11 @@ ENV RUST_BACKTRACE 1
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
file curl jq; \
file curl jq ca-certificates; \
# apt cleanup
apt-get autoremove -y; \
apt-get clean; \
update-ca-certificates; \
rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; \
# add user
groupadd -g 1000 parity; \