Skip to content

Commit d4704d3

Browse files
committed
Fix workflow and Dockerfile change to node18 for 32bit.
1 parent 4c3cee9 commit d4704d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Typescript compile
2-
FROM node:20-alpine AS builder
2+
FROM node:18-alpine AS builder
33
WORKDIR /app
44

55
COPY package*.json ./
@@ -12,7 +12,7 @@ COPY . .
1212
RUN npm run build:node
1313

1414
# Runtime copy
15-
FROM node:20-alpine
15+
FROM node:18-alpine
1616
WORKDIR /app
1717

1818
COPY --from=builder /app/dist ./dist

0 commit comments

Comments
 (0)