project setup

This commit is contained in:
Evan Lanham
2022-01-08 12:52:39 -07:00
parent 23ca57a728
commit 70981f88b2
34 changed files with 27636 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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"]