-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from credebl/devops
Added docker file and done changes in frontend url
- Loading branch information
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM node:16-alpine | ||
#RUN kill -9 sudo lsof -t -i:8000 | ||
WORKDIR /app | ||
COPY package.json ./ | ||
RUN rm -rf node_moduls | ||
RUN npm i | ||
COPY . . | ||
RUN npm cache clean --force | ||
CMD [ "npm", "start" ] | ||
|
||
# docker build -t webauthn . | ||
# docker tag docker.io/library/webauthn docker tag docker.io/library/webauthn 668004263903.dkr.ecr.ap-south-1.amazonaws.com/credebl2.0:webauthn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters