mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 11:37:01 -07:00
15 lines
239 B
Docker
15 lines
239 B
Docker
FROM cgr.dev/chainguard/wolfi-base
|
|
|
|
RUN apk add --no-cache tini bash
|
|
|
|
# nobody 65534:65534
|
|
USER 65534:65534
|
|
|
|
|
|
COPY magellan /magellan
|
|
COPY bin/magellan.sh /usr/bin/magellan.sh
|
|
|
|
|
|
CMD [ "/magellan.sh" ]
|
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|