-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(version): release 0.1.3 version
- Loading branch information
1 parent
9704e86
commit 28d8f46
Showing
2 changed files
with
3 additions
and
3 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM node:latest as build-stage | ||
FROM node:20.10-alpine3.18 as build-stage | ||
COPY . /app | ||
WORKDIR /app | ||
RUN npm install | ||
RUN npm i -g @vercel/ncc | ||
RUN ncc build app/app.ts -o build | ||
FROM node:latest as production-stage | ||
FROM node:20.10-alpine3.18 as production-stage | ||
COPY --from=build-stage /app/build /app | ||
EXPOSE 8077 | ||
ENTRYPOINT [ "node","/app/index.js" ] |
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