all finde

This commit is contained in:
2018-12-13 01:10:09 +01:00
parent 0304d8e3a1
commit d6456f37e7
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ FROM ubuntu:16.04
RUN apt-get update -yy && \ RUN apt-get update -yy && \
apt-get install -yy git make curl pkg-config apt-get install -yy git make curl pkg-config
RUN curl -s https://storage.googleapis.com/golang/go1.7.3.linux-amd64.tar.gz | tar -C /usr/local -xzf - RUN curl -s https://storage.googleapis.com/golang/go1.11.2.linux-amd64.tar.gz | tar -C /usr/local -xzf -
ENV GOPATH=/go ENV GOPATH=/go
ENV PATH=$PATH:/usr/local/go/bin:/go/bin ENV PATH=$PATH:/usr/local/go/bin:/go/bin
RUN mkdir -p /go/bin RUN mkdir -p /go/bin

View File

@@ -45,13 +45,13 @@ As seems to be the case for many things in the XMLish world, the xmldsig and xml
This package uses cgo to wrap libxmlsec. As such, you'll need libxmlsec headers and a C compiler to make it work. On linux, this might look like: This package uses cgo to wrap libxmlsec. As such, you'll need libxmlsec headers and a C compiler to make it work. On linux, this might look like:
$ apt-get install libxml2-dev libxmlsec1-dev pkg-config apt-get install libxml2-dev libxmlsec1-dev pkg-config
$ go get git.deineagentur.com/DeineAgenturUG/go-xmlsec go get git.deineagentur.com/DeineAgenturUG/go-xmlsec
On Mac with homebrew, this might look like: On Mac with homebrew, this might look like:
$ brew install libxmlsec1 libxml2 pkg-config brew install libxmlsec1 libxml2 pkg-config
$ go get git.deineagentur.com/DeineAgenturUG/go-xmlsec go get git.deineagentur.com/DeineAgenturUG/go-xmlsec
## Static Linking ## Static Linking