Fix Dockerfile

- Bump go to 1.23 and use official upstream image
- Re-add ci-node-generate that got lost in a recent commit
This commit is contained in:
Ralf Haferkamp
2025-02-13 16:34:44 +01:00
parent 2e94516bae
commit 4c311d381f

View File

@@ -19,8 +19,10 @@ FROM owncloudci/nodejs:18 AS generate
COPY ./ /opencloud/
WORKDIR /opencloud/opencloud
RUN make ci-node-generate
FROM owncloudci/golang:1.22 AS build
FROM golang:1.23-alpine AS build
RUN apk add bash make git curl gcc musl-dev libc-dev binutils-gold inotify-tools vips-dev
COPY --from=generate /opencloud /opencloud