Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
jobs:
check-runner-availability:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
runners_available: ${{ steps.check.outputs.runners_available }}
runner_type: ${{ steps.check.outputs.runner_type }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
create-branch:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
outputs:
new_version: ${{ steps.new-version.outputs.new_version }}
branch_name: ${{ steps.new-version.outputs.branch_name }}
Expand Down Expand Up @@ -146,6 +148,7 @@ jobs:
check-deploy-method:
needs: create-tag
runs-on: ubuntu-latest
permissions: {}
outputs:
use_dispatch: ${{ steps.check.outputs.use_dispatch }}
steps:
Expand All @@ -172,6 +175,7 @@ jobs:
(inputs.deploy_to == 'staging' || inputs.deploy_to == 'all')
runs-on: ubuntu-latest
timeout-minutes: 5
permissions: {}
outputs:
run_id: ${{ steps.dispatch.outputs.run_id }}
steps:
Expand Down Expand Up @@ -211,6 +215,7 @@ jobs:
(needs.deploy-staging-dispatch.result == 'success' || needs.deploy-staging-dispatch.result == 'skipped')
runs-on: ubuntu-latest
timeout-minutes: 5
permissions: {}
outputs:
run_id: ${{ steps.dispatch.outputs.run_id }}
steps:
Expand Down Expand Up @@ -295,6 +300,7 @@ jobs:
if: always()
runs-on: ubuntu-latest
timeout-minutes: 2
permissions: {}
steps:
- name: Create summary
env:
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# --- Build Stage ---
FROM public.ecr.aws/docker/library/node:22.21.1-alpine AS builder
FROM public.ecr.aws/docker/library/node:22.22.1-alpine3.23 AS builder
WORKDIR /app

# Install git for private repository access
Expand All @@ -23,12 +23,12 @@ RUN if [ -f next-build.tar.gz ]; then \
fi

# --- Production Stage ---
FROM public.ecr.aws/docker/library/node:22.21.1-alpine AS runner
FROM public.ecr.aws/docker/library/node:22.22.1-alpine3.23 AS runner
WORKDIR /app
ENV NODE_ENV=production

# Install git for private repository access
RUN apk add --no-cache git
# Install git and upgrade system packages for security patches
RUN apk upgrade --no-cache && apk add --no-cache git

# Create non-root user before copying files (enables --chown)
RUN addgroup -g 1001 -S appgroup && adduser -S appuser -u 1001 -G appgroup
Expand Down
Loading