f877c37fc6
tests / Test (macos-latest, 3.14) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.10) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.13) (push) Has been cancelled
tests / Test (windows-latest, 3.14) (push) Has been cancelled
tests / Validate (push) Has been cancelled
tests / Test (macos-latest, 3.10) (push) Has been cancelled
tests / Test (macos-latest, 3.11) (push) Has been cancelled
tests / Test (macos-latest, 3.12) (push) Has been cancelled
tests / Test (macos-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.12) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.14) (push) Has been cancelled
tests / Test (windows-latest, 3.10) (push) Has been cancelled
tests / Test (windows-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.12) (push) Has been cancelled
universe validation / Validate (push) Has been cancelled
15 lines
425 B
Docker
15 lines
425 B
Docker
FROM node:18
|
|
|
|
USER node
|
|
|
|
# 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
|
|
WORKDIR /home/node
|
|
COPY --chown=node package.json .
|
|
COPY --chown=node package-lock.json .
|
|
RUN npm install
|
|
|
|
WORKDIR /home/node/website/
|