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 \ curl \
distcc \ distcc \
git \ git \
kernel-package \
make \ make \
libncurses5-dev \ libncurses5-dev \
libssl-dev \ libssl-dev \

View File

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