mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-09 18:00:40 +00:00
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.22@sha256:c2010b9c2342431a24a2e64e33d9eb2e484af49e72c820e200d332d214d5e61f as build
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
RUN make build
|
|
|
|
FROM docker.io/alpine:3.20@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.title="wp-opentofu"
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wp-opentofu"
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wp-opentofu"
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wp-opentofu"
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
ARG TOFU_VERSION
|
|
|
|
# renovate: datasource=github-releases depName=opentofu/opentofu
|
|
ENV TOFU_VERSION="${TOFU_VERSION:-v1.7.2}"
|
|
|
|
RUN apk --update add --virtual .build-deps libarchive-tools && \
|
|
apk add --no-cache curl git openssh-client && \
|
|
curl -SsfL "https://github.com/opentofu/opentofu/releases/download/${TOFU_VERSION}/tofu_${TOFU_VERSION##v}_linux_amd64.zip" | \
|
|
bsdtar -xf - -C /usr/local/bin tofu && \
|
|
chmod 755 /usr/local/bin/tofu && \
|
|
apk del .build-deps && \
|
|
rm -rf /var/cache/apk/* && \
|
|
rm -rf /tmp/* && \
|
|
rm -rf /root/.cache/
|
|
|
|
COPY --from=build /src/dist/wp-opentofu /bin/wp-opentofu
|
|
ENTRYPOINT ["/bin/wp-opentofu"]
|