17 lines
No EOL
470 B
Docker
17 lines
No EOL
470 B
Docker
FROM debian:latest AS builder
|
|
|
|
RUN cat /etc/issue
|
|
|
|
|
|
FROM scratch
|
|
|
|
ARG GIT_COMMIT=
|
|
# Image annotations, see https://github.com/opencontainers/image-spec/blob/master/annotations.md
|
|
LABEL \
|
|
org.opencontainers.image.vendor=Zombi \
|
|
org.opencontainers.image.source=https://gitea.zom.bi/images/hello-world.git \
|
|
org.opencontainers.image.revision=$GIT_COMMIT
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
ENV HELLO=world |