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
4 changes: 2 additions & 2 deletions packages/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Monorepo Dockerfile - must be built from repository root:
# docker build -f packages/api/Dockerfile .
FROM node:24-alpine AS builder
FROM node:24.16.0-alpine AS builder
WORKDIR /usr/local/apps/stela/

COPY package.json ./
Expand All @@ -15,7 +15,7 @@ RUN npm install
RUN npm install -ws
RUN npm run build -ws

FROM node:24-alpine AS final
FROM node:24.16.0-alpine AS final

ARG AWS_RDS_CERT_BUNDLE

Expand Down