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
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM node:19
FROM node:25-alpine3.22

LABEL "com.github.actions.name"="Automated value increment."
LABEL "com.github.actions.description"="Automated value increment."
LABEL "com.github.actions.icon"="plus"
LABEL "com.github.actions.color"="green"

RUN apk update && apk add --no-cache git git-lfs

COPY package*.json ./

RUN apt-get update
RUN apt-get -y install git git-lfs
RUN npm install
RUN npm ci --no-cache --prefer-offline --no-audit

COPY . .
COPY ./index.js ./

ENTRYPOINT ["node", "/index.js"]
Loading