mirror of
https://github.com/davidallendj/configurator.git
synced 2025-12-20 03:27:02 -07:00
16 lines
No EOL
349 B
Docker
16 lines
No EOL
349 B
Docker
FROM cgr.dev/chainguard/wolfi-base
|
|
|
|
RUN apk add --no-cache tini bash
|
|
RUN mkdir -p /configurator
|
|
RUN mkdir -p /configurator/lib
|
|
|
|
# nobody 65534:65534
|
|
USER 65534:65534
|
|
|
|
# copy the binary and all of the default plugins
|
|
COPY configurator /configurator/configurator
|
|
COPY lib/* /configurator/lib/*
|
|
|
|
CMD ["/configurator"]
|
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ] |