From 25b91f88b20798ab7c3763cfafb09cbfa84b1783 Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Tue, 12 Jul 2022 13:36:09 +0200 Subject: [PATCH] Keep wget Signed-off-by: Christian Richter --- motsognir/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/motsognir/Dockerfile b/motsognir/Dockerfile index 7f984b0..206b2f9 100644 --- a/motsognir/Dockerfile +++ b/motsognir/Dockerfile @@ -4,12 +4,12 @@ ENV VERSION=1.0.13 ENV TARBALL="motsognir-${VERSION}.tar.xz" EXPOSE 70 RUN apt-get update \ - && apt-get -y install wget build-essential rsyslog wget + && apt-get -y install wget build-essential rsyslog WORKDIR /build RUN wget "https://downloads.sourceforge.net/project/motsognir/v${VERSION}/${TARBALL}" \ && tar xfv "${TARBALL}" RUN cd $(echo "${TARBALL}" | sed -e "s/.tar.xz//g") && make all && make install -RUN apt-get -y purge wget build-essential +RUN apt-get -y purge build-essential RUN rm -Rfv /etc/apt/sources.list.* RUN rm -Rfv /build RUN useradd -ms /bin/bash -d /gopher gopher