Skip to content
Snippets Groups Projects
Select Git revision
  • 7631413f5b9b069164dd05966fc930d418b7ebd9
  • master default protected
  • v1.23.2
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.21.1
  • v1.21.0
  • v1.20.3
  • v1.20.2
  • v1.20.1
  • v1.20.0
  • v1.19.4
  • v1.19.3
  • v1.19.2
  • v1.19.1
  • v1.19.0
  • v1.18.2
  • v1.18.1
  • v1.18.0
  • v1.17.0
  • v1.16.1
22 results

job-stat.go

Blame
  • Dockerfile 358 B
    # syntax = docker/dockerfile:1.3
    FROM golang:1.19 AS build
    
    WORKDIR /go/src/github.com/mccutchen/go-httpbin
    
    COPY . .
    
    RUN --mount=type=cache,id=gobuild,target=/root/.cache/go-build \
        make build buildtests
    
    FROM gcr.io/distroless/base
    
    COPY --from=build /go/src/github.com/mccutchen/go-httpbin/dist/go-httpbin* /bin/
    
    EXPOSE 8080
    CMD ["/bin/go-httpbin"]