mirror of
https://github.com/Team4388/ScoutingApp2022.git
synced 2026-06-08 16:28:04 -06:00
12 lines
238 B
Docker
12 lines
238 B
Docker
|
|
FROM node:16-alpine as build-step
|
||
|
|
RUN mkdir /app/
|
||
|
|
WORKDIR /app/
|
||
|
|
ENV PATH /app/node_modules/.bin:$PATH
|
||
|
|
COPY package.json ./
|
||
|
|
COPY package-lock.json ./
|
||
|
|
RUN npm install
|
||
|
|
RUN npm install react-scripts
|
||
|
|
COPY . ./
|
||
|
|
# USER node
|
||
|
|
CMD ["npm", "start"]
|