[FORGEJO] upgrade alpine 3.18
This commit is contained in:
parent
7a20536263
commit
fbbc92180f
2 changed files with 3 additions and 2 deletions
|
@ -4,6 +4,7 @@ on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- go.mod
|
- go.mod
|
||||||
|
- Dockerfile
|
||||||
- .forgejo/workflows/release.yml
|
- .forgejo/workflows/release.yml
|
||||||
- .forgejo/workflows/integration.yml
|
- .forgejo/workflows/integration.yml
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#Build stage
|
#Build stage
|
||||||
FROM golang:1.20-alpine3.17 AS build-env
|
FROM golang:1.20-alpine3.18 AS build-env
|
||||||
|
|
||||||
RUN apk --no-cache add build-base git
|
RUN apk --no-cache add build-base git
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ COPY . /srv
|
||||||
WORKDIR /srv
|
WORKDIR /srv
|
||||||
RUN make build
|
RUN make build
|
||||||
|
|
||||||
FROM alpine:3.17
|
FROM alpine:3.18
|
||||||
LABEL maintainer="contact@forgejo.org"
|
LABEL maintainer="contact@forgejo.org"
|
||||||
|
|
||||||
COPY --from=build-env /srv/forgejo-runner /bin/forgejo-runner
|
COPY --from=build-env /srv/forgejo-runner /bin/forgejo-runner
|
||||||
|
|
Loading…
Reference in a new issue