0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-05 02:35:26 +02:00
dendrite/docker/Dockerfile
mujx 1bcb673e3c Set up a development environment with docker (#387)
Signed-off-by: Konstantinos Sideris <sideris.konstantin@gmail.com>
2018-01-02 18:26:37 +00:00

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