File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 22* .md
33** /* .test. *
44** /test. *
5- botfather-settings
6- coverage
75dist
86Dockerfile
9- init-debug-environment.sh
107node_modules
118test
129
10+ botfather-settings
11+ init-debug-environment.sh
12+
1313# botfiles
1414additionalEvents
1515eventfiles
Original file line number Diff line number Diff line change 1313 steps :
1414 - uses : actions/setup-node@v4
1515 with :
16- node-version : 20
16+ node-version : 22
1717 - uses : actions/checkout@v4
1818 - run : npm ci
1919 - run : npm test
Original file line number Diff line number Diff line change 1- FROM docker.io/library/node:20 -alpine AS builder
1+ FROM docker.io/library/node:22 -alpine AS builder
22RUN apk upgrade --no-cache
33WORKDIR /build
44COPY package.json package-lock.json ./
@@ -7,16 +7,16 @@ COPY . ./
77RUN node_modules/.bin/tsc
88
99
10- FROM docker.io/library/node:20 -alpine AS packages
10+ FROM docker.io/library/node:22 -alpine AS packages
1111RUN apk upgrade --no-cache
1212WORKDIR /build
1313COPY package.json package-lock.json ./
1414RUN npm ci --no-audit --no-fund --no-update-notifier --omit=dev
1515
1616
17- FROM docker.io/library/node:20- alpine AS final
17+ FROM docker.io/library/alpine:3.21 AS final
1818RUN apk upgrade --no-cache \
19- && apk --no-cache add git
19+ && apk add --no-cache nodejs git
2020
2121WORKDIR /app
2222ENV NODE_ENV=production
You can’t perform that action at this time.
0 commit comments