Fix development Dockerfile to use uptodate images

This commit is contained in:
Ralf Haferkamp
2023-08-30 21:09:56 +02:00
parent 0aac1cc2a8
commit 6668f90e18

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