mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00

Node image to LTS 22.11.0 Chase rename of mercury-parser -> parser npm update and npm audit fix
10 lines
285 B
Docker
10 lines
285 B
Docker
FROM node:22.11.0
|
|
ENV NODE_ENV=production
|
|
WORKDIR /node
|
|
# 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 /node
|
|
ENV NODE_PATH=/node/node_modules/
|
|
RUN npm install
|
|
WORKDIR /srv
|