Skip to content
Snippets Groups Projects
Select Git revision
  • 1b4021d0dacaacc8c8670ead0a535c84279cc96b
  • master default protected
  • v1.22.9
  • v1.22.8
  • v1.22.7
  • v1.22.6
  • v1.22.5
  • v1.22.4
  • v1.22.3
  • v1.22.1
  • v1.22.0
  • v1.21.0
  • v1.20.5
  • v1.20.4
  • v1.20.3
  • v1.20.2
  • v1.20.1
  • v1.20.0
  • v1.19.0
  • v1.18.3
  • v1.18.2
  • v1.18.1
22 results

go.mod

Blame
  • This project manages its dependencies using Go Modules. Learn more
    Dockerfile 267 B
    FROM golang:1.11
    
    WORKDIR /go/src/github.com/mccutchen/go-httpbin
    
    COPY Makefile .
    RUN make deps
    
    COPY . .
    RUN make
    
    FROM gcr.io/distroless/base
    COPY --from=0 /go/src/github.com/mccutchen/go-httpbin/dist/go-httpbin /bin/go-httpbin
    EXPOSE 8080
    CMD ["/bin/go-httpbin"]