forked from github-starred/komodo
19 lines
543 B
Docker
19 lines
543 B
Docker
## Assumes the latest binaries for the required arch are already built (by binaries.Dockerfile).
|
|
|
|
ARG BINARIES_IMAGE=ghcr.io/moghtech/komodo-binaries:latest
|
|
|
|
# This is required to work with COPY --from
|
|
FROM ${BINARIES_IMAGE} AS binaries
|
|
|
|
FROM gcr.io/distroless/cc
|
|
|
|
COPY --from=binaries /km /usr/local/bin/km
|
|
|
|
ENV KOMODO_CLI_CONFIG_PATHS="/config"
|
|
|
|
CMD [ "km" ]
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/moghtech/komodo"
|
|
LABEL org.opencontainers.image.description="Komodo CLI"
|
|
LABEL org.opencontainers.image.licenses="GPL-3.0"
|