first commit

This commit is contained in:
DESKTOP-DH6BVPV\chiefsoft
2022-12-10 23:35:50 -05:00
commit e8cbdf6732
2455 changed files with 123043 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# pull official base image
FROM node:18.12.1-alpine
# set working directory
WORKDIR /app
# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH
# install app dependencies
COPY package.json ./
#COPY package-lock.json ./
RUN npm install --silent
# RUN npm install react-scripts@3.4.1 -g --silent
# add app
COPY . ./
# start app
CMD ["npm","run", "start"]
# CMD ["yarn", "start"]