All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
I'm used to GNU distros and not busybox so i did a little whoopsie
11 lines
No EOL
167 B
Docker
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"] |