Compare commits

...

1 Commits

Author SHA1 Message Date
Michael Barz
cbafb09374 fix: hand over version to docker build 2025-07-10 19:37:14 +02:00

View File

@@ -9,7 +9,7 @@ RUN apk add bash make git curl gcc musl-dev libc-dev binutils-gold inotify-tools
COPY ../ /opencloud/
WORKDIR /opencloud
RUN GOOS="${TARGETOS:-linux}" GOARCH="${TARGETARCH:-amd64}" ; \
RUN GOOS="${TARGETOS:-linux}" GOARCH="${TARGETARCH:-amd64}" VERSION="${VERSION:-daily}" ; \
make -C opencloud release-linux-docker-${TARGETARCH} ENABLE_VIPS=true
FROM alpine:3.20