fix(push): use multi-arch Node base in push image Dockerfile (#7344)

This commit is contained in:
Herwindra Berlian
2026-05-03 11:57:51 +07:00
committed by GitHub
parent 913105f2de
commit 8b27ca67aa

View File

@@ -1,4 +1,4 @@
FROM node AS build
FROM node:22-bookworm-slim AS build
RUN useradd --create-home kuma
USER kuma
WORKDIR /home/kuma
@@ -15,4 +15,3 @@ COPY --from=build /home/kuma/uptime-kuma-push ./uptime-kuma-push
ENTRYPOINT ["/home/kuma/uptime-kuma-push"]