0
0
mirror of https://github.com/thegeeklab/wp-matrix.git synced 2024-10-18 08:00:39 +00:00
wp-matrix/Containerfile.multiarch
renovate[bot] f3120fbd14
chore(docker): update docker.io/library/golang:1.23 docker digest to adee809 (#159)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| docker.io/library/golang | stage | digest | `4f063a2` -> `adee809` |

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/thegeeklab/wp-matrix).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-10-02 03:08:21 +00:00

22 lines
832 B
Plaintext

FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.23@sha256:adee809c2d0009a4199a11a1b2618990b244c6515149fe609e2788ddf164bd10 as build
ARG TARGETOS
ARG TARGETARCH
ADD . /src
WORKDIR /src
RUN make build
FROM docker.io/library/alpine:3.20@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="wp-matrix"
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wp-matrix"
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wp-matrix"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wp-matrix"
COPY --from=build /src/dist/wp-matrix /bin/wp-matrix
ENTRYPOINT [ "/bin/wp-matrix" ]