Skip to content

Instantly share code, notes, and snippets.

@jumbo-in-Jap
Created April 20, 2018 06:39
Show Gist options
  • Save jumbo-in-Jap/c9acefa94b0f216c61d4e0c0dda84c0a to your computer and use it in GitHub Desktop.
Save jumbo-in-Jap/c9acefa94b0f216c61d4e0c0dda84c0a to your computer and use it in GitHub Desktop.
revel docker
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