Skip to content

Commit

Permalink
Add curl as explicit dependency in Dockerfile
Browse files Browse the repository at this point in the history
Even though the base image being used already contains curl it's useful
to be explicit about what dependencies are needed to make it easier when
migrating to a different base image.
  • Loading branch information
hashhar committed Aug 17, 2022
1 parent 3ec3e3b commit def52d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN \
echo 'Acquire::Retries "3";' > /etc/apt/apt.conf.d/80-retries && \
echo 'Acquire::http::Timeout "15";' > /etc/apt/apt.conf.d/80-timeouts && \
apt-get update -q && \
apt-get install -y -q less python3 && \
apt-get install -y -q less python3 curl && \
rm -rf /var/lib/apt/lists/* && \
update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && \
groupadd trino --gid 1000 && \
Expand Down

0 comments on commit def52d4

Please sign in to comment.