Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docker/server/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,22 @@ RUN sed -i "s|http://archive.ubuntu.com|${apt_archive}|g" /etc/apt/sources.list
&& useradd -r -g clickhouse --uid=101 --home-dir=/var/lib/clickhouse --shell=/bin/bash clickhouse \
&& apt-get update \
&& apt-get install --yes --no-install-recommends \
libgnutls30 \
libssl3 \
openssl \
libsystemd0 \
libudev1 \
libgcrypt20 \
sed \
liblzma5 \
busybox \
ca-certificates \
locales \
tzdata \
wget \
gpgv \
&& busybox --install -s \
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
&& apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*

#docker-official-library:off
# The part between `docker-official-library` tags is related to our builds
Expand Down
Loading