0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-15 23:48:57 +02:00
dendrite/docker/Dockerfile

11 lines
186 B
Docker
Raw Normal View History

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"]