Compare commits

..

2 commits

Author SHA1 Message Date
ab250fc915 Skip backend test stage for now to save time
All checks were successful
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Has been skipped
2025-09-20 13:16:34 -04:00
4a60bf5b94 Use fully qualified image name in frontend Dockerfile 2025-09-20 13:15:02 -04:00
2 changed files with 3 additions and 2 deletions

View file

@ -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:

View file

@ -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