mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
1bcb673e3c
Signed-off-by: Konstantinos Sideris <sideris.konstantin@gmail.com>
11 lines
186 B
Docker
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"]
|