Skip to content
Snippets Groups Projects

Docker files added

Merged Sardar, Shaiban M (UG - Computer Science) requested to merge shaiban into main
6 files
+ 159
100
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 4
3
FROM node:14-alpine
WORKDIR /usr/src/app
WORKDIR /app
COPY package*.json ./
COPY ["package.json", "package-lock.json", "./"]
RUN npm install --silent
RUN npm install react-scripts -g --silent
COPY . .
COPY . .
EXPOSE 3000
Loading