You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
240 B
9 lines
240 B
FROM docker.io/library/alpine:3.15
|
|
RUN apk --no-cache add ca-certificates \
|
|
&& update-ca-certificates
|
|
ARG BUILT_ARTIFACT
|
|
ADD "$BUILT_ARTIFACT" /
|
|
COPY ca-bundle.crt /etc/ssl/certs/ca-certificates.crt
|
|
ENTRYPOINT [ "/github-mirror" ]
|
|
CMD []
|
|
|
|
|