Skip to content
Merged
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
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
ARG RUN

FROM node:24.12.0-alpine as builder
FROM node:18.17.1-alpine as builder

WORKDIR /app

# The catalyst client lib is using a dependency installed by using git
RUN apk add --no-cache git python3 build-base
RUN apk update
RUN apk add git python3 build-base

COPY package.json /app/package.json
COPY package-lock.json /app/package-lock.json
Expand All @@ -17,7 +18,7 @@ COPY . /app

RUN npm run build

FROM node:24.12.0-alpine
FROM node:18.17.1-alpine

WORKDIR /app

Expand Down