You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome-go/Dockerfile

9 lines
197 B
Docker

FROM golang:alpine
RUN apk add --update -t build-deps curl go git libc-dev gcc libgcc
RUN go get github.com/russross/blackfriday github.com/gorilla/mux
WORKDIR /srv
CMD ["go", "run", "repo.go"]