chore: remove debug steps and loyment workflow
All checks were successful
CI / build-and-test (push) Successful in 7m32s
CI / deploy (push) Successful in 1m1s

This commit is contained in:
SpecialX
2025-12-19 18:13:48 +08:00
parent 11ea7c880c
commit fc3e9a4220
2 changed files with 9 additions and 9 deletions

View File

@@ -7,10 +7,8 @@ RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
# Copy standalone output
# We assume the context contains the .next folder and public folder from the artifacts
COPY --chown=nextjs:nodejs .next/standalone ./
COPY --chown=nextjs:nodejs .next/static ./.next/static
COPY --chown=nextjs:nodejs public ./public
# The context is now the standalone folder itself
COPY --chown=nextjs:nodejs . .
USER nextjs