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 2
2
* .md
3
3
** /* .test. *
4
4
** /test. *
5
- botfather-settings
6
- coverage
7
5
dist
8
6
Dockerfile
9
- init-debug-environment.sh
10
7
node_modules
11
8
test
12
9
10
+ botfather-settings
11
+ init-debug-environment.sh
12
+
13
13
# botfiles
14
14
additionalEvents
15
15
eventfiles
Original file line number Diff line number Diff line change 13
13
steps :
14
14
- uses : actions/setup-node@v4
15
15
with :
16
- node-version : 20
16
+ node-version : 22
17
17
- uses : actions/checkout@v4
18
18
- run : npm ci
19
19
- 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
2
2
RUN apk upgrade --no-cache
3
3
WORKDIR /build
4
4
COPY package.json package-lock.json ./
@@ -7,16 +7,16 @@ COPY . ./
7
7
RUN node_modules/.bin/tsc
8
8
9
9
10
- FROM docker.io/library/node:20 -alpine AS packages
10
+ FROM docker.io/library/node:22 -alpine AS packages
11
11
RUN apk upgrade --no-cache
12
12
WORKDIR /build
13
13
COPY package.json package-lock.json ./
14
14
RUN npm ci --no-audit --no-fund --no-update-notifier --omit=dev
15
15
16
16
17
- FROM docker.io/library/node:20- alpine AS final
17
+ FROM docker.io/library/alpine:3.21 AS final
18
18
RUN apk upgrade --no-cache \
19
- && apk --no-cache add git
19
+ && apk add --no-cache nodejs git
20
20
21
21
WORKDIR /app
22
22
ENV NODE_ENV=production
You can’t perform that action at this time.
0 commit comments