diff --git a/motsognir/Dockerfile b/motsognir/Dockerfile index c384c4c..5099e67 100644 --- a/motsognir/Dockerfile +++ b/motsognir/Dockerfile @@ -1,5 +1,5 @@ FROM debian:latest -LABEL maintainer="dragonchaser " +LABEL maintainer="dragonchaser " ENV VERSION=1.0.13 ENV TARBALL="motsognir-${VERSION}.tar.xz" EXPOSE 70 diff --git a/motsognir/Dockerfile.arm32v7 b/motsognir/Dockerfile.arm32v7 deleted file mode 100644 index da900bb..0000000 --- a/motsognir/Dockerfile.arm32v7 +++ /dev/null @@ -1,19 +0,0 @@ -FROM arm32v7/debian:buster-slim -#COPY qemu-arm-static /usr/bin -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 -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 rm -Rfv /etc/apt/sources.list.* -RUN rm -Rfv /build -RUN useradd -ms /bin/bash -d /gopher gopher -WORKDIR /gopher -COPY entrypoint.sh / -COPY rsyslog.conf /etc -ENTRYPOINT ["/entrypoint.sh"]