-
Notifications
You must be signed in to change notification settings - Fork 33
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 #57 from Arnob-B/main
dockerization
- Loading branch information
Showing
5 changed files
with
57 additions
and
1 deletion.
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 @@ | ||
node_modules |
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
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,20 @@ | ||
# using latest node alpine base image | ||
FROM node:23-alpine | ||
|
||
# setting up the working as app | ||
WORKDIR /app | ||
|
||
# layering to avoid unnecesary builds | ||
COPY package.json ./ | ||
COPY package-lock.json ./ | ||
|
||
# setting up registry as in some cases npm i was taking too long | ||
RUN npm config set registry https://registry.npmjs.org/ && \ | ||
npm install --legacy-peer-deps --verbose | ||
|
||
# copying other files | ||
COPY . . | ||
|
||
EXPOSE 5173 | ||
|
||
CMD ["npm", "run", "dev"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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