Skip to content
Open
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
Expand Up @@ -6,12 +6,13 @@
# ============================================
# Stage 1: Build frontend
# ============================================
FROM node:20-alpine AS frontend
FROM node:22-alpine AS frontend

WORKDIR /app

# Install pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate
RUN corepack enable \
&& corepack prepare pnpm@10.17.1 --activate

# Copy package files
COPY frontend/package.json frontend/pnpm-lock.yaml* ./
Expand All @@ -28,7 +29,7 @@ RUN pnpm build
# ============================================
# Stage 2: Build Rust binary
# ============================================
FROM rust:1.92-bookworm AS backend
FROM rust:1.94-bookworm AS backend

WORKDIR /app

Expand Down