mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-20 11:29:25 +02:00
9 lines
No EOL
256 B
Docker
9 lines
No EOL
256 B
Docker
FROM docker.io/cimg/node:current-browsers
|
|
WORKDIR /app
|
|
|
|
# Install app dependencies
|
|
# A wildcard is used to ensure both package.json AND package-lock.json are copied
|
|
# where available (npm@5+)
|
|
COPY --chown=circleci:circleci package*.json ./
|
|
|
|
RUN npm install |