-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
25 lines (15 loc) · 980 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
24
25
# SPDX-License-Identifier: Apache-2.0
################################################################################
## docker build --no-cache --target certs -t vela-manifest-tool:certs . ##
################################################################################
FROM alpine:3.19.1@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b as certs
RUN apk add --update --no-cache ca-certificates
#################################################################
## docker build --no-cache -t vela-manifest-tool:local . ##
#################################################################
FROM mplatform/manifest-tool:alpine-v2.1.6@sha256:96db9e944c50a5f7514394af4e44f764725645cfd2efef92d87095b0016a55ae
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
WORKDIR /workspace
RUN mkdir /root/.docker
COPY release/vela-manifest-tool /bin/vela-manifest-tool
ENTRYPOINT [ "/bin/vela-manifest-tool" ]