first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-02-11 17:27:29 -05:00
commit 4502274b95
3060 changed files with 142768 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# pull official base image
#FROM node:13.12.0-alpine
FROM node:18.19.0-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 . ./
RUN npm run build
# start app
#CMD ["npm","run", "start"]
CMD ["npm","run", "preview"]