mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-19 09:25:28 +00:00
cbbee59774
Installs just the base tools (which are quite substantial), but not the deps (which get installed as part of the build).
7 lines
282 B
Docker
7 lines
282 B
Docker
ARG ARCH=amd64
|
|
FROM ${ARCH}/ubuntu:impish
|
|
RUN /bin/bash -c 'echo "man-db man-db/auto-update boolean false" | debconf-set-selections'
|
|
RUN apt-get -o=Dpkg::Use-Pty=0 -q update \
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q dist-upgrade -y \
|
|
&& apt-get -o=Dpkg::Use-Pty=0 -q autoremove -y
|