From 7a5e9574e421d792b37d896ee9948d0591b13c6d Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 10 Jan 2021 23:38:02 -0500 Subject: [PATCH] Update to gophernicus 3.1.1 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 00f36bd..7c82047 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ FROM alpine:latest AS builder ARG XINETD_VERSION=2.3.15.4 -ARG VERSION=3.0.1 +ARG VERSION=3.1.1 RUN apk add build-base autoconf automake libtool pkgconf git RUN git clone -b ${XINETD_VERSION} https://github.com/openSUSE/xinetd.git RUN cd xinetd && sh ./autogen.sh && ./configure && make RUN git clone -b ${VERSION} https://github.com/gophernicus/gophernicus.git -RUN cd gophernicus && make +RUN cd gophernicus && ./configure && make FROM alpine:latest EXPOSE 70/tcp @@ -15,8 +15,8 @@ VOLUME /var/gopher RUN mkdir -p /etc/xinetd.d/ RUN mkdir -p /var/gopher COPY --from=builder /xinetd/xinetd /usr/sbin -COPY --from=builder /gophernicus/gophernicus /usr/sbin -COPY --from=builder /gophernicus/gophermap /var/gopher/gophermap +COPY --from=builder /gophernicus/src/gophernicus /usr/sbin +COPY --from=builder /gophernicus/gophermap.sample /var/gopher/gophermap COPY xinetd.conf /etc/xinetd.conf COPY init.sh /init.sh