magellan/Dockerfile
Alex Lovell-Troy 041d134079
refactor: Update Go version
This commit updates the Go version to the latest stable release and adds QEMU setup to the GitHub workflow. It also sets up the necessary environment variables required by GoReleaser. These changes ensure that the project is using the latest Go version and is ready for release.

Adds support for more architectures, package types, and better docker image.
2024-10-30 09:56:44 -06:00

19 lines
358 B
Docker

FROM chainguard/wolfi-base:latest
# Include curl in the final image for manual checks of the Redfish urls
RUN set -ex \
&& apk update \
&& apk add --no-cache curl tini \
&& rm -rf /var/cache/apk/* \
&& rm -rf /tmp/*
# nobody 65534:65534
USER 65534:65534
COPY magellan /magellan
CMD [ "/magellan" ]
ENTRYPOINT [ "/sbin/tini", "--" ]