Skip to content

Commit

Permalink
feat(version): release 0.1.3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Dec 27, 2023
1 parent 9704e86 commit 28d8f46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
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" ]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloud-robot-services",
"version": "0.1.2",
"version": "0.1.3",
"description": "Cloud Robot Services",
"main": "app/app.ts",
"scripts": {
Expand Down

0 comments on commit 28d8f46

Please sign in to comment.