NewsBlur/docker/node/Dockerfile

10 lines
235 B
Docker

FROM node:14.4.0
WORKDIR /srv
ENV NODE_ENV=production
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY node/package*.json ./
RUN npm install