Compare commits
2 commits
8f6d55ee73
...
ab250fc915
| Author | SHA1 | Date | |
|---|---|---|---|
| ab250fc915 | |||
| 4a60bf5b94 |
2 changed files with 3 additions and 2 deletions
|
|
@ -4,6 +4,7 @@ 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 node:20-alpine AS builder
|
FROM docker.io/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 node:20-alpine AS runner
|
FROM docker.io/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