Skip to content

Commit

Permalink
build(deps): bump golang from 1.16-alpine to 1.17.2-alpine
Browse files Browse the repository at this point in the history
Bumps golang from 1.16-alpine to 1.17.2-alpine.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 25, 2021
1 parent 146510f commit 9f8f74f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ COPY ui .
COPY --from=ui-deps /app/node_modules ./node_modules
RUN yarn workspace @parca/web build

FROM golang:1.16-alpine AS builder
FROM golang:1.17.2-alpine AS builder

WORKDIR /app

Expand All @@ -35,7 +35,7 @@ COPY ./gen /app/gen

RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -trimpath -gcflags="all=-N -l" -o parca ./cmd/parca

FROM golang:1.16-alpine
FROM golang:1.17.2-alpine

COPY --from=builder /go/bin/dlv /
COPY --from=builder /go/bin/grpc-health-probe /
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.go.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Designed to only used by Tilt to iterate faster on the API.
FROM golang:1.16-alpine AS builder
FROM golang:1.17.2-alpine AS builder

WORKDIR /app

Expand All @@ -25,7 +25,7 @@ COPY ./gen /app/gen

RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -gcflags="all=-N -l" -o parca ./cmd/parca

FROM golang:1.16-alpine
FROM golang:1.17.2-alpine

COPY --from=builder /go/bin/dlv /
COPY --from=builder /go/bin/grpc-health-probe /
Expand Down

0 comments on commit 9f8f74f

Please sign in to comment.