Product-Manager/product-manager-frontend/.docker/dev/Dockerfile

13 lines
243 B
Docker
Raw Normal View History

2022-04-25 12:07:08 +00:00
FROM node:14
# Create and define the node_modules's cache directory.
WORKDIR /cache
# install app dependencies
COPY package.json .
COPY package-lock.json .
RUN npm install --silent
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY . .