Signed-off-by: Jess Frazelle <jess@oxide.computer>
This commit is contained in:
Jess Frazelle 2020-05-15 08:53:14 -07:00
parent c91ab7588f
commit 299ae08ba8
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 5 additions and 8 deletions

View File

@ -6,7 +6,6 @@ RUN apt-get update && apt-get install -y \
curl \
distcc \
git \
kernel-package \
make \
libncurses5-dev \
libssl-dev \

View File

@ -1,7 +1,7 @@
FROM r.j3ss.co/wireguard:install
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apk add --no-cache \
RUN apt update && apt -y install \
bash \
bc \
bison \
@ -10,14 +10,12 @@ RUN apk add --no-cache \
fakeroot \
flex \
git \
gmp-dev \
libressl-dev \
mpc1-dev \
mpfr-dev \
ncurses-dev \
libgmp-dev \
libncurses-dev \
perl \
tar \
xz
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENV HOME /root
WORKDIR $HOME