Comments etc

This commit is contained in:
shamoon
2025-03-28 17:41:31 -07:00
parent 0fc69ef469
commit 28e2b6ccee
2 changed files with 3 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Build Next.js app
- name: Build app
run: |
NEXT_PUBLIC_BUILDTIME="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}" \
NEXT_PUBLIC_VERSION="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}" \

View File

@@ -1,4 +1,4 @@
# Base build stage (for building Next.js if needed)
# Buid stage
FROM node:22-slim AS builder
WORKDIR /app
@@ -31,7 +31,7 @@ else \
echo "Skipping build in CI (already built)"; \
fi
# Final runtime image
# Runtime stage
FROM docker.io/node:22-alpine AS runner
LABEL org.opencontainers.image.title "Homepage"
LABEL org.opencontainers.image.description "A self-hosted services landing page, with docker and service integrations."