Skip to content
This repository was archived by the owner on Aug 5, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .radicle/native.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shell: |
ci-build
11 changes: 9 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Build stage: compile the Vite/TS app
FROM node:22-alpine AS build
# Radicle CI build contract (ci-build): image name = ${CAT}/${APP}
ARG CAT=tessera
ARG APP=skytess

# Build stage: compile the Vite/TS app. Pinned to the BUILD host platform: the
# stage output (dist/) is arch-independent static files, so the heavy pnpm/vite
# part runs natively on the CI host while the final stage (COPY-only) can target
# any arch without emulation.
FROM --platform=$BUILDPLATFORM node:22-alpine AS build
# Pinned, NOT pnpm@11: a floating major picks up whatever 11.x is newest at
# build time and has broken this build before (11.11 tightened the allowBuilds
# matcher). Keep this in lockstep with package.json's packageManager field.
Expand Down
Loading