frontend/Dockerfile
Radical 8ae492a9f1
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci: use adduser command instead of useradd
I'm used to GNU distros and not busybox so i did a little whoopsie
2025-05-05 13:22:39 +02:00

11 lines
No EOL
167 B
Docker

FROM node:alpine
COPY ./.output /web
COPY entrypoint.sh /usr/bin/entrypoint.sh
RUN busybox adduser -D -h /web gorb
USER gorb
ENTRYPOINT ["/usr/bin/entrypoint.sh"]