Skip to content

Commit 542cb87

Browse files
METAL-3173/update base image go 1.17 (kloeckner-i#6)
Co-authored-by: Soohyun Kim <[email protected]>
1 parent dfa584d commit 542cb87

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Check Code Style
1818
uses: golangci/golangci-lint-action@v2
1919
with:
20-
version: v1.40.1
20+
version: v1.43.0
2121

2222
build:
2323
runs-on: ubuntu-latest

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.15.0-alpine AS builder
1+
FROM golang:1.17.4-alpine AS builder
22

33
RUN apk add --update --no-cache make
44
WORKDIR /build
@@ -7,7 +7,7 @@ COPY . /build/
77

88
RUN make
99

10-
FROM alpine:3.12.0
10+
FROM alpine:3.15.0
1111

1212
COPY --from=builder /build/target/db-auth-gateway /usr/local/bin/db-auth-gateway
1313
COPY --from=builder /build/LICENSE /LICENSE

0 commit comments

Comments
 (0)