mirror of
https://github.com/itzg/mc-router.git
synced 2025-11-18 06:24:54 +01:00
14 lines
364 B
Docker
14 lines
364 B
Docker
FROM alpine AS certs
|
|
RUN apk add -U \
|
|
ca-certificates
|
|
|
|
FROM scratch
|
|
|
|
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"
|
|
LABEL org.opencontainers.image.title="mc-router"
|
|
LABEL org.opencontainers.image.source="https://github.com/itzg/mc-router"
|
|
|
|
COPY --from=certs /etc/ssl/certs/ /etc/ssl/certs
|
|
COPY mc-router /
|
|
ENTRYPOINT ["/mc-router"]
|