mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
13 lines
179 B
Docker
13 lines
179 B
Docker
FROM cgr.dev/chainguard/wolfi-base
|
|
|
|
RUN apk add --no-cache tini
|
|
|
|
# nobody 65534:65534
|
|
USER 65534:65534
|
|
|
|
|
|
COPY magellan /
|
|
|
|
CMD [ "/magellan" ]
|
|
|
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|