forked from go-vela/vela-kaniko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
23 lines (14 loc) · 899 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-License-Identifier: Apache-2.0
#########################################################################
## docker build --no-cache --target certs -t vela-kaniko:certs . ##
#########################################################################
FROM alpine:3.19.0@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48 as certs
RUN apk add --update --no-cache ca-certificates
##########################################################
## docker build --no-cache -t vela-kaniko:local . ##
##########################################################
FROM gcr.io/kaniko-project/executor:v1.19.0-debug@sha256:df6a99559265d1d80e5743d3cfbe046f2433df0a992b1adb8911eb21a3cc8ad8
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
WORKDIR /workspace
COPY release/vela-kaniko /bin/vela-kaniko
ENTRYPOINT [ "/bin/vela-kaniko" ]