Bump motsognir to v1.0.13

This commit is contained in:
Christian
2021-01-08 16:23:29 +01:00
committed by Christian Richter
parent 812b4617e1
commit 8ceebfc940
2 changed files with 6 additions and 4 deletions

View File

@@ -1,11 +1,12 @@
FROM debian:latest FROM debian:latest
LABEL maintainer="dragonchaser <crichter@suse.de>" LABEL maintainer="dragonchaser <crichter@suse.de>"
ENV TARBALL=motsognir-1.0.12.tar.xz ENV VERSION=1.0.13
ENV TARBALL="motsognir-${VERSION}.tar.xz"
EXPOSE 70 EXPOSE 70
RUN apt-get update \ RUN apt-get update \
&& apt-get -y install wget build-essential rsyslog && apt-get -y install wget build-essential rsyslog
WORKDIR /build WORKDIR /build
RUN wget "https://downloads.sourceforge.net/project/motsognir/v1.0.12/${TARBALL}" \ RUN wget "https://downloads.sourceforge.net/project/motsognir/v${VERSION}/${TARBALL}" \
&& tar xfv "${TARBALL}" && tar xfv "${TARBALL}"
RUN cd $(echo "${TARBALL}" | sed -e "s/.tar.xz//g") && make all && make install 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 wget build-essential

View File

@@ -1,11 +1,12 @@
FROM arm32v7/debian:buster-slim FROM arm32v7/debian:buster-slim
COPY qemu-arm-static /usr/bin COPY qemu-arm-static /usr/bin
ENV TARBALL=motsognir-1.0.12.tar.xz ENV VERSION=1.0.13
ENV TARBALL="motsognir-${VERSION}.tar.xz"
EXPOSE 70 EXPOSE 70
RUN apt-get update \ RUN apt-get update \
&& apt-get -y install wget build-essential rsyslog && apt-get -y install wget build-essential rsyslog
WORKDIR /build WORKDIR /build
RUN wget "https://downloads.sourceforge.net/project/motsognir/v1.0.12/${TARBALL}" \ RUN wget "https://downloads.sourceforge.net/project/motsognir/v${VERSION}/${TARBALL}" \
&& tar xfv "${TARBALL}" && tar xfv "${TARBALL}"
RUN cd $(echo "${TARBALL}" | sed -e "s/.tar.xz//g") && make all && make install 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 wget build-essential