Skip to content

Commit 5993c4e

Browse files
authored
Update scheduler.Dockerfile to go 1.18 to match admin (flyteorg#391)
Signed-off-by: Haytham Abuelfutuh <[email protected]>
1 parent 0e2fae0 commit 5993c4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
version: ${{ needs.bump_version.outputs.version }}
8181
push: true
8282
repository: flyteorg/flytescheduler
83-
dockerfile: Dockerfile.scheduler
83+
dockerfile: scheduler.Dockerfile
8484
secrets:
8585
FLYTE_BOT_PAT: ${{ secrets.FLYTE_BOT_PAT }}
8686
FLYTE_BOT_USERNAME: ${{ secrets.FLYTE_BOT_USERNAME }}

Dockerfile.scheduler scheduler.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# TO OPT OUT OF UPDATES, SEE https://github.com/lyft/boilerplate/blob/master/Readme.rst
55

6-
FROM golang:1.16.0-alpine3.13 as builder
6+
FROM golang:1.18-alpine3.15 as builder
77
RUN apk add git openssh-client make curl
88

99
# COPY only the go mod files for efficient caching
@@ -24,7 +24,7 @@ RUN make linux_compile_scheduler
2424
ENV PATH="/artifacts:${PATH}"
2525

2626
# This will eventually move to centurylink/ca-certs:latest for minimum possible image size
27-
FROM alpine:3.13
27+
FROM alpine:3.15
2828
LABEL org.opencontainers.image.source https://github.com/flyteorg/flyteadmin
2929

3030
COPY --from=builder /artifacts /bin

0 commit comments

Comments
 (0)