This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | stage | minor | `1.25-alpine` → `1.26-alpine` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My44LjAiLCJ1cGRhdGVkSW5WZXIiOiI0My44LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbInR5cGUvZGVwZW5kZW5jaWVzIl19--> Reviewed-on: #12 Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk> Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
11 lines
326 B
Docker
11 lines
326 B
Docker
FROM golang:1.26-alpine as build
|
|
WORKDIR /go/src/app
|
|
COPY . /go/src/app
|
|
RUN CGO_ENABLED=0 go build -o /go/bin/app
|
|
|
|
FROM gcr.io/distroless/base-debian13
|
|
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
|
|
LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/insultgen"
|
|
COPY --from=build /go/bin/app /
|
|
CMD ["/app"]
|