mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-12-29 19:20:46 +08:00
Include wget in the Docker image (#556)
This commit is contained in:
parent
6b6b62545c
commit
a05f90568f
1 changed files with 3 additions and 1 deletions
|
@ -44,7 +44,9 @@ RUN apt-get update && apt-get upgrade -y && \
|
||||||
# Runtime dependencies
|
# Runtime dependencies
|
||||||
build-essential ca-certificates libncurses5-dev \
|
build-essential ca-certificates libncurses5-dev \
|
||||||
# In case someone uses `Mix.install/2` and point to a git repo
|
# 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 purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && \
|
||||||
apt-get clean -y && \
|
apt-get clean -y && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
Loading…
Reference in a new issue