-
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.
Added docker file and done changes in frontend url
Signed-off-by: Sheetal-ayanworks <[email protected]>
- Loading branch information
1 parent
79f8ea8
commit 1984d34
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