2023-01-18 17:15:47 +00:00
|
|
|
FROM node:18
|
2022-01-20 22:02:13 +00:00
|
|
|
|
2023-01-18 17:15:47 +00:00
|
|
|
USER node
|
2022-01-20 22:02:13 +00:00
|
|
|
|
|
|
|
# This is so the installed node_modules will be up one directory
|
|
|
|
# from where a user mounts files, so that they don't accidentally mount
|
|
|
|
# their own node_modules from a different build
|
|
|
|
# https://nodejs.org/api/modules.html#modules_loading_from_node_modules_folders
|
2023-01-18 17:15:47 +00:00
|
|
|
WORKDIR /home/node
|
|
|
|
COPY --chown=node package.json .
|
|
|
|
COPY --chown=node package-lock.json .
|
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
WORKDIR /home/node/website/
|