Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
affiliation-assessor-app
Commits
f29542ec
Unverified
Commit
f29542ec
authored
1 year ago
by
Vinod Kumar Shyave
Committed by
GitHub
1 year ago
Browse files
Options
Download
Plain Diff
Merge pull request #286 from arun1205/gitpod
docker files updated for 404 err!!
parents
f6eec0a2
25efac0b
gitpod-uat
gitpod
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
apps/wrapper/applicant-portal/dockerfile
+4
-34
apps/wrapper/applicant-portal/dockerfile
apps/wrapper/applicant-portal/package.json
+2
-0
apps/wrapper/applicant-portal/package.json
apps/wrapper/web-portal/dockerfile
+2
-2
apps/wrapper/web-portal/dockerfile
apps/wrapper/web-portal/package.json
+1
-0
apps/wrapper/web-portal/package.json
with
9 additions
and
36 deletions
+9
-36
apps/wrapper/applicant-portal/dockerfile
+
4
−
34
View file @
f29542ec
#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
This diff is collapsed.
Click to expand it.
apps/wrapper/applicant-portal/package.json
+
2
−
0
View file @
f29542ec
...
...
@@ -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"
,
...
...
This diff is collapsed.
Click to expand it.
apps/wrapper/web-portal/dockerfile
+
2
−
2
View file @
f29542ec
...
...
@@ -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
This diff is collapsed.
Click to expand it.
apps/wrapper/web-portal/package.json
+
1
−
0
View file @
f29542ec
...
...
@@ -53,6 +53,7 @@
]
},
"devDependencies"
:
{
"serve"
:
"^14.2.0"
,
"react-icons"
:
"^4.8.0"
,
"tailwindcss"
:
"^3.3.2"
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets