docker-nextcloud-notify-push/Dockerfile
renovate-bot 18f7a3e71c
All checks were successful
continuous-integration/drone/pr Build is passing
Update dependency nextcloud/notify_push to v1
2025-01-15 17:16:34 +00:00

26 lines
753 B
Docker

FROM rust:1.83.0-bullseye@sha256:666769451042f57d1d4cb25bdab43ff8749d93718574e3ae80b386de681f5f90 as build
# renovate: datasource=github-tags depName=nextcloud/notify_push versioning=semver
ENV NOTIFY_PUSH_VERSION v1.0.0
WORKDIR /notify_push
RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends \
musl-dev \
musl-tools \
; \
git clone --branch $NOTIFY_PUSH_VERSION https://github.com/nextcloud/notify_push.git .; \
rustup target add x86_64-unknown-linux-musl; \
cargo build --release --target=x86_64-unknown-linux-musl;
FROM scratch
COPY --from=build /notify_push/target/x86_64-unknown-linux-musl/release/notify_push /
EXPOSE 7867
USER 33
CMD ["/notify_push", "/config/config.php"]