Skip to content

Commit

Permalink
Vulnerability fixes (#292)
Browse files Browse the repository at this point in the history
* #I431: Vuln fix with NodeJs 23

* #I431:  ignored postman collection

* #I431: ignored postman collection

* #I431: removed postman collection
  • Loading branch information
HarishGangula authored Dec 16, 2024
1 parent bb88954 commit 1e23bd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion api-service/.dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
api-service/postman-collection
postman-collection
3 changes: 2 additions & 1 deletion api-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM --platform=linux/amd64 node:20-alpine
FROM --platform=linux/amd64 node:23.4-alpine
RUN mkdir -p /opt/api-service
COPY ./api-service ./opt/api-service
WORKDIR /opt/api-service
RUN rm -rf postman-collection
RUN npm install
COPY . .
EXPOSE 3000
Expand Down

0 comments on commit 1e23bd1

Please sign in to comment.