Compare commits
No commits in common. "ab250fc9159de2ae377b882c94607a3135d0e183" and "8f6d55ee73caa29937bc4773ba1d470cfc0b4746" have entirely different histories.
ab250fc915
...
8f6d55ee73
2 changed files with 2 additions and 3 deletions
|
|
@ -4,7 +4,6 @@ on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
test-backend:
|
test-backend:
|
||||||
runs-on: [ci]
|
runs-on: [ci]
|
||||||
if: false # Skip backend tests for now
|
|
||||||
|
|
||||||
# Point all steps at the host's rootless Podman socket
|
# Point all steps at the host's rootless Podman socket
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Multi-stage build for Next.js frontend
|
# Multi-stage build for Next.js frontend
|
||||||
FROM docker.io/node:20-alpine AS builder
|
FROM node:20-alpine AS builder
|
||||||
|
|
||||||
# Set working directory
|
# Set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
@ -17,7 +17,7 @@ COPY . .
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
# Production stage
|
# Production stage
|
||||||
FROM docker.io/node:20-alpine AS runner
|
FROM node:20-alpine AS runner
|
||||||
|
|
||||||
# Create non-root user
|
# Create non-root user
|
||||||
RUN addgroup --system --gid 1001 nodejs
|
RUN addgroup --system --gid 1001 nodejs
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue