showip/Dockerfile

8 lines
89 B
Docker

FROM node:14-buster-slim
ADD * /app/
WORKDIR /app
RUN npm i
USER nobody
CMD node app.js