dendrite/docker/Dockerfile
2018-01-02 14:29:38 +02:00

11 lines
186 B
Docker

FROM golang:alpine3.6
RUN mkdir /build
WORKDIR /build
RUN apk --update --no-cache add openssl bash git && \
go get github.com/constabulary/gb/...
CMD ["bash", "docker/build.sh"]