Files
openstapps/images/node/Dockerfile
2021-09-09 16:56:56 +02:00

12 lines
217 B
Docker

FROM node:14-alpine
RUN apk update && apk add git curl && mkdir -p /opt
COPY --chown=root:root wait-for.sh /opt/wait-for
RUN chmod +x /opt/wait-for && ln -s /opt/wait-for /usr/local/bin/wait-for
USER node
CMD []