Compare commits
2 commits
1b1215b4ed
...
c8f12205b8
| Author | SHA1 | Date | |
|---|---|---|---|
| c8f12205b8 | |||
| 9842715e9a |
2 changed files with 5 additions and 2 deletions
|
|
@ -176,7 +176,7 @@ jobs:
|
|||
|
||||
build-frontend:
|
||||
runs-on: [ci]
|
||||
if: false
|
||||
# if: false
|
||||
# needs: [test-backend, test-frontend]
|
||||
# needs: [test-frontend]
|
||||
|
||||
|
|
@ -238,7 +238,7 @@ jobs:
|
|||
deploy-prod:
|
||||
runs-on: [prod]
|
||||
# needs: [build-backend]
|
||||
# needs: [build-frontend]
|
||||
needs: [build-frontend]
|
||||
# needs: [build-backend, build-frontend]
|
||||
|
||||
env:
|
||||
|
|
|
|||
|
|
@ -65,6 +65,9 @@ COPY --from=builder /app/public ./public
|
|||
COPY --from=builder /app/.next/standalone ./
|
||||
COPY --from=builder /app/.next/static ./.next/static
|
||||
|
||||
# Copy WASM files to standalone output
|
||||
COPY --from=builder /app/src/lib/wasm-pkg ./src/lib/wasm-pkg/
|
||||
|
||||
# non-root (optional)
|
||||
RUN addgroup --system --gid 1001 nodejs \
|
||||
&& adduser --system --uid 1001 nextjs \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue