Commit 5993c4e 1 parent 0e2fae0 commit 5993c4e Copy full SHA for 5993c4e
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 80
80
version : ${{ needs.bump_version.outputs.version }}
81
81
push : true
82
82
repository : flyteorg/flytescheduler
83
- dockerfile : Dockerfile. scheduler
83
+ dockerfile : scheduler.Dockerfile
84
84
secrets :
85
85
FLYTE_BOT_PAT : ${{ secrets.FLYTE_BOT_PAT }}
86
86
FLYTE_BOT_USERNAME : ${{ secrets.FLYTE_BOT_USERNAME }}
Original file line number Diff line number Diff line change 3
3
#
4
4
# TO OPT OUT OF UPDATES, SEE https://github.com/lyft/boilerplate/blob/master/Readme.rst
5
5
6
- FROM golang:1.16.0 -alpine3.13 as builder
6
+ FROM golang:1.18 -alpine3.15 as builder
7
7
RUN apk add git openssh-client make curl
8
8
9
9
# COPY only the go mod files for efficient caching
@@ -24,7 +24,7 @@ RUN make linux_compile_scheduler
24
24
ENV PATH="/artifacts:${PATH}"
25
25
26
26
# This will eventually move to centurylink/ca-certs:latest for minimum possible image size
27
- FROM alpine:3.13
27
+ FROM alpine:3.15
28
28
LABEL org.opencontainers.image.source https://github.com/flyteorg/flyteadmin
29
29
30
30
COPY --from=builder /artifacts /bin
You can’t perform that action at this time.
0 commit comments