Created
April 20, 2018 06:39
-
-
Save jumbo-in-Jap/c9acefa94b0f216c61d4e0c0dda84c0a to your computer and use it in GitHub Desktop.
revel docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.8.0 | |
ENV GOPATH $GOPATH:/go/src | |
RUN apt-get update && \ | |
apt-get upgrade -y | |
# install revel and revel-cli | |
RUN go get -u github.com/revel/cmd/revel && \ | |
go get github.com/derekparker/delve/cmd/dlv && \ | |
go get -u github.com/golang/dep/cmd/dep | |
# change current dir | |
RUN mkdir /go/src/landskip_go | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment