mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 11:37:01 -07:00
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.
19 lines
358 B
Docker
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", "--" ]
|