-
Notifications
You must be signed in to change notification settings - Fork 11
/
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.20.2@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5 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.22.0-debug@sha256:7b3699e9e105521075812cd3f3f4c62c913cb5cd113c929975502022df3bcf60
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" ]