mirror of https://github.com/matrix-org/go-neb.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
308 B
12 lines
308 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
docker run \
|
|
--rm \
|
|
-v "$PWD":/usr/src/myapp \
|
|
-w /usr/src/myapp \
|
|
golang:1.8-alpine \
|
|
sh -c 'apk add --no-cache git gcc musl-dev && go get -u github.com/constabulary/gb/... && gb build -f github.com/matrix-org/go-neb'
|
|
|
|
docker build -t ${IMAGE_PREFIX}go-neb:latest .
|