mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-19 09:25:28 +00:00
d64e2ae0af
- split them on multiple lines - sort the installed package deps - don't use extra unnecessary `bash` invocation
18 lines
488 B
Docker
18 lines
488 B
Docker
FROM node:14.16.1
|
|
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 install --no-install-recommends -y \
|
|
ccache \
|
|
cmake \
|
|
eatmydata \
|
|
g++ \
|
|
gdb \
|
|
git \
|
|
make \
|
|
ninja-build \
|
|
openssh-client \
|
|
patch \
|
|
pkg-config \
|
|
wine
|