From 215c9e439aa423e500cd9a5790ac9564d574feb3 Mon Sep 17 00:00:00 2001 From: Roeland Date: Sun, 18 Apr 2021 20:25:32 +0200 Subject: [PATCH] Fix docker image --- Dockerfile.build | 10 +++------- Dockerfile.build-static | 23 +++++++++-------------- 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/Dockerfile.build b/Dockerfile.build index b486f2e..5815ff9 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,15 +1,11 @@ -FROM ubuntu +FROM golang:1-buster RUN apt-get update -yy && \ apt-get install -yy git make curl libxml2-dev libxmlsec1-dev liblzma-dev pkg-config -RUN curl -s https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz | tar -C /usr/local -xzf - -ENV GOPATH=/go -ENV PATH=$PATH:/usr/local/go/bin:/go/bin -RUN mkdir -p /go/bin - +ENV GO111MODULE=auto ADD . /go/src/github.com/crewjam/go-xmlsec WORKDIR /go/src/github.com/crewjam/go-xmlsec -RUN go get github.com/crewjam/errset +RUN go get -d -v ./... RUN go build -o /bin/xmldsig ./examples/xmldsig.go # Check our dynamic library dependencies. This will produce output like: diff --git a/Dockerfile.build-static b/Dockerfile.build-static index 7b8441e..c3c98ee 100644 --- a/Dockerfile.build-static +++ b/Dockerfile.build-static @@ -1,14 +1,11 @@ -FROM ubuntu:16.04 +FROM golang:1-buster + +ENV GO111MODULE=auto RUN apt-get update -yy && \ apt-get install -yy git make curl pkg-config -RUN curl -s https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz | tar -C /usr/local -xzf - -ENV GOPATH=/go -ENV PATH=$PATH:/usr/local/go/bin:/go/bin -RUN mkdir -p /go/bin - -RUN curl -sL ftp://xmlsoft.org/libxml2/libxml2-2.9.4.tar.gz | tar -xzf - && \ - cd /libxml2-2.9.4 && \ +RUN curl --output - -sL ftp://xmlsoft.org/libxml2/libxml2-2.9.4.tar.gz | tar -xzf - && \ + cd libxml2-2.9.4 && \ ./configure \ --enable-static \ --disable-shared \ @@ -54,8 +51,8 @@ RUN curl -sL ftp://xmlsoft.org/libxml2/libxml2-2.9.4.tar.gz | tar -xzf - && \ make install RUN \ - curl -sL ftp://ftp.openssl.org/source/openssl-1.0.2j.tar.gz | tar -xzf - && \ - cd openssl-1.0.2j && \ + curl --output - -sL ftp://ftp.openssl.org/source/openssl-1.1.1k.tar.gz | tar -xzf - && \ + cd openssl-1.1.1k && \ ./config \ no-shared \ no-weak-ssl-ciphers \ @@ -69,8 +66,8 @@ RUN \ no-dso && \ make depend install -RUN curl -sL http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.22.tar.gz | tar -xzf - && \ - cd xmlsec1-1.2.22 && \ +RUN curl --output - -sL http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.31.tar.gz | tar -xzf - && \ + cd xmlsec1-1.2.31 && \ ./configure \ --enable-static \ --disable-shared \ @@ -79,8 +76,6 @@ RUN curl -sL http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.22.tar.gz | tar --enable-static-linking \ --without-gnu-ld \ --with-default-crypto=openssl \ - --with-openssl=/usr/local/ssl \ - --with-libxml=/usr/local \ --without-nss \ --without-nspr \ --without-gcrypt \