also install wget

This commit is contained in:
Malte Jürgens 2022-07-23 12:56:23 +02:00
parent d2f564faef
commit 3f0d8a4ee9
No known key found for this signature in database
GPG Key ID: D29FBD5F93C0CFC3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM ubuntu:jammy
RUN apt-get update &&\
apt-get install -y ca-certificates curl gnupg lsb-release &&\
apt-get install -y ca-certificates curl wget gnupg lsb-release &&\
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg &&\
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null &&\
apt-get update &&\