Merge pull request #7167 from rhafer/bump-alpine

Bump base images for Dockerfiles
This commit is contained in:
Michael Barz
2023-09-03 21:20:34 +02:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@@ -14,21 +14,21 @@
# is a lot faster than the build steps below.
FROM owncloudci/nodejs:16 as generate
FROM owncloudci/nodejs:18 as generate
COPY ./ /ocis/
WORKDIR /ocis/ocis
RUN make ci-node-generate
FROM owncloudci/golang:1.19 as build
FROM owncloudci/golang:1.20 as build
COPY --from=generate /ocis /ocis
WORKDIR /ocis/ocis
RUN make ci-go-generate build
FROM alpine:3.17
FROM alpine:3.18
RUN apk add --no-cache ca-certificates mailcap tree attr curl && \
echo 'hosts: files dns' >| /etc/nsswitch.conf

View File

@@ -1,4 +1,4 @@
FROM amd64/alpine:3.17
FROM amd64/alpine:3.18
ARG VERSION=""
ARG REVISION=""

View File

@@ -1,4 +1,4 @@
FROM arm64v8/alpine:3.17
FROM arm64v8/alpine:3.18
ARG VERSION=""
ARG REVISION=""