Unverified Commit f29542ec authored by Vinod Kumar Shyave's avatar Vinod Kumar Shyave Committed by GitHub
Browse files

Merge pull request #286 from arun1205/gitpod

docker files updated for 404 err!!
No related merge requests found
Showing with 9 additions and 36 deletions
+9 -36
#get the latest alpine image from node registry
FROM node:16-alpine AS build-stage
RUN npm i -g pnpm
#set the working directory
FROM node:lts as dependencies
WORKDIR /app
#copy the package and package lock files
#from local to container work directory /app
COPY package.json /app/
COPY package-lock.json /app/
#Run command npm install to install packages
COPY . ./
RUN npm install
#copy all the folder contents from local to container
COPY . .
#specify env variables at runtime
ARG REACT_APP_ENKETO_URL
ARG REACT_APP_FORM_MANAGER_URL
ARG REACT_APP_HASURA_URL
ENV REACT_APP_ENKETO_URL $REACT_APP_ENKETO_URL
ENV REACT_APP_FORM_MANAGER_URL $REACT_APP_FORM_MANAGER_URL
ENV REACT_APP_HASURA_URL $REACT_APP_HASURA_URL
#create a react production build
RUN npm run build
#get the latest alpine image from nginx registry
FROM nginx:alpine
#we copy the output from first stage that is our react build
#into nginx html directory where it will serve our index file
COPY --from=build-stage /app/build/ /usr/share/nginx/html
\ No newline at end of file
EXPOSE 3002
CMD ["npm", "run", "start-prod"]
\ No newline at end of file
......@@ -22,6 +22,7 @@
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"start-prod": "serve -s build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
......@@ -44,6 +45,7 @@
]
},
"devDependencies": {
"serve": "^14.2.0",
"localforage": "^1.10.0",
"react-icons": "^4.8.0",
"react-xml-parser": "^1.1.8",
......
......@@ -3,5 +3,5 @@ WORKDIR /app
COPY . ./
RUN npm install
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start-prod"]
\ No newline at end of file
EXPOSE 3001
CMD ["npm", "run", "start"]
\ No newline at end of file
......@@ -53,6 +53,7 @@
]
},
"devDependencies": {
"serve": "^14.2.0",
"react-icons": "^4.8.0",
"tailwindcss": "^3.3.2"
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment