echoswagger/build/Dockerfile

14 lines
189 B
Docker
Raw Normal View History

FROM golang
LABEL maintainer="alex@webz.asia"
RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
ENV GOPATH=/go
VOLUME /go
WORKDIR /go
CMD ["go", "version"]