chore(deps): update all-dependencies - abandoned #3

Merged
lucasoskorep merged 4 commits from renovate/all into main 2026-02-01 03:37:31 -05:00
3 changed files with 5 additions and 9 deletions
Showing only changes of commit c1f940fa57 - Show all commits

View File

@@ -1,17 +1,14 @@
# Stage 1: Build the Next.js frontend # Stage 1: Build the Next.js frontend
FROM docker.io/library/node:25-alpine AS frontend-builder FROM docker.io/library/node:25 AS frontend-builder
LABEL authors="lucasoskorep" LABEL authors="lucasoskorep"
WORKDIR /build/mta-sign-ui WORKDIR /build/mta-sign-ui
# Enable corepack for pnpm
RUN corepack enable && corepack prepare pnpm@10.28.1 --activate
# Copy package files first for better caching # Copy package files first for better caching
COPY mta-sign-ui/package.json mta-sign-ui/pnpm-lock.yaml* ./ COPY mta-sign-ui/package.json mta-sign-ui/pnpm-lock.yaml* ./
# Install dependencies (use frozen-lockfile if lock exists, otherwise generate) # Enable corepack and install pnpm from packageManager field
RUN pnpm install RUN npm install -g pnpm
# Copy the rest of the frontend source # Copy the rest of the frontend source
COPY mta-sign-ui/ ./ COPY mta-sign-ui/ ./

View File

@@ -65,9 +65,9 @@ build-ui:
# Build multi-arch container image # Build multi-arch container image
containers: containers:
podman build --platform linux/arm64,linux/amd64 -f docker/Dockerfile --manifest chaos2theory/pi-mta-sign:test . podman build --platform linux/arm64,linux/amd64 -f Dockerfile --manifest chaos2theory/pi-mta-sign:test .
podman manifest push --all chaos2theory/pi-mta-sign:test podman manifest push --all chaos2theory/pi-mta-sign:test
podman manifest rm chaos2theory/pi-mta-sign:test podman manifest rm chaos2theory/pi-mta-sign:testpod
# Build container image (local arch only) # Build container image (local arch only)
build-container: build-container:

View File

@@ -1 +0,0 @@
24