123456789101112131415161718192021222324 |
- FROM node:lts-alpine
- RUN apk update && apk --no-cache add shadow && \
- usermod -u 1001 node && \
- groupmod -g 1001 node
- RUN find / -group 1000 -exec chgrp -h node {} \;
- RUN find / -user 1000 -exec chown -h node {} \;
-
- RUN adduser -u 1000 -G users -s /bin/sh -D offline
-
- USER offline
- COPY ./bashrc /home/offline/.bashrc
- COPY ./inputrc /home/offline/.inputrc
- COPY ./entrypoint.sh /usr/local/bin
- USER root
- RUN chmod +x /usr/local/bin/entrypoint.sh
- USER offline
- CMD ["/bin/sh","/usr/local/bin/entrypoint.sh"]
|