FROM docker:28-dind@sha256:2a232a42256f70d78e3cc5d2b5d6b3276710a0de0596c145f627ecfae90282ac

RUN set -eux; apk add --no-cache \
	rsync \
	git \
	nodejs-lts \
	npm

WORKDIR /usr/src/app

COPY . /usr/src/app/
RUN npm install --unsafe-perm && npm cache clean --force
