zoorest/build.sh

30 lines
634 B
Bash
Raw Permalink Normal View History

2017-02-17 13:31:26 +03:00
#!/bin/bash
cat > Dockerfile.builder <<EOF
FROM golang
MAINTAINER Denis Zheleztsov <difrex.punk@gmail.com>
ENV GOPATH /usr
RUN go get github.com/Difrex/zoorest/rest
RUN cd /usr/src/github.com/Difrex/zoorest && go get -t -v ./...
WORKDIR /usr/src/github.com/Difrex/zoorest
ENTRYPOINT go build -ldflags "-linkmode external -extldflags -static" && mv zoorest /out
EOF
# Build builder
docker build -t zoorest_builder -f Dockerfile.builder .
# Build bin
2017-04-17 12:33:05 +03:00
docker run -v $(pwd)/out:/out zoorest_builder
2017-02-17 13:31:26 +03:00
case $1 in alpine)
docker build -t zoorest -f Dockerfile .
;;
*)
;;
esac