-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (13 loc) · 833 Bytes
/
Dockerfile
File metadata and controls
21 lines (13 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-License-Identifier: Apache-2.0
################################################################################
## docker build --no-cache --target certs -t vela-build-summary:certs . ##
################################################################################
FROM alpine:3.20.2@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5 as certs
RUN apk add --update --no-cache ca-certificates
#################################################################
## docker build --no-cache -t vela-build-summary:local . ##
#################################################################
FROM scratch
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY release/vela-build-summary /bin/vela-build-summary
ENTRYPOINT [ "/bin/vela-build-summary" ]