Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM node:17.9.0-alpine3.14
FROM node:22-alpine3.21

WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
Expand All @@ -11,5 +12,4 @@ RUN wget -O /usr/local/share/ca-certificates/comodoca.crt "https://comodoca.my.s
#Update the certificate store
RUN update-ca-certificates
COPY . .
EXPOSE 3000
CMD [ "node", "app.js" ]
Loading