Skip to content
Snippets Groups Projects
Select Git revision
  • 83b4a61dbd07351f53d324a8931023ea7c913cad
  • main default protected
  • drip-server-timing
  • compress-middleware
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • v2.7.0
  • v2.6.0
  • v2.5.6
  • v2.5.5
  • v2.5.4
  • v2.5.3
  • v2.5.2
  • v2.5.1
  • v2.5.0
  • v2.4.2
  • v2.4.1
  • v2.4.0
  • v2.3.0
  • v2.2.2
24 results

Dockerfile

Blame
  • user avatar
    Will McCutchen authored
    83b4a61d
    History
    Dockerfile 275 B
    FROM golang:1.13
    
    WORKDIR /go/src/github.com/mccutchen/go-httpbin
    
    COPY Makefile .
    RUN make deps
    
    COPY . .
    RUN make build buildtests
    
    FROM gcr.io/distroless/base
    COPY --from=0 /go/src/github.com/mccutchen/go-httpbin/dist/go-httpbin* /bin/
    EXPOSE 8080
    CMD ["/bin/go-httpbin"]