Include wget in the Docker image (#556)

This commit is contained in:
Jonatan Kłosko 2021-09-20 18:41:25 +02:00 committed by GitHub
parent 6b6b62545c
commit a05f90568f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,9 @@ RUN apt-get update && apt-get upgrade -y && \
# Runtime dependencies
build-essential ca-certificates libncurses5-dev \
# In case someone uses `Mix.install/2` and point to a git repo
git && \
git \
# Additional standard tools
wget && \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*