Files
devops-directive-docker-course/04-building-container-images/sample-app/client-react/Dockerfile.2
2023-01-25 17:55:51 -05:00

14 lines
248 B
Docker

FROM node:19.4-bullseye AS build
# Specify working directory other than /
WORKDIR /usr/src/app
# Copy only files required to install
# dependencies (better layer caching)
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "run", "dev"]