change port 4023 to 4024

main
Kar k1 2025-08-30 18:44:16 +05:30
parent f29889df9a
commit 76ad19c8b9
2 changed files with 6 additions and 1 deletions

View File

@ -55,6 +55,8 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
outputs: type=docker,dest=/tmp/siliconpin-image.tar
build-args: |
SKIP_ENV_VALIDATION=true
- name: Load Docker image
run: docker load -i /tmp/siliconpin-image.tar

View File

@ -15,8 +15,11 @@ RUN yarn install --frozen-lockfile --network-timeout 402300
FROM node:20-alpine AS builder
WORKDIR /app
# Accept build argument for environment validation
ARG SKIP_ENV_VALIDATION=true
ENV NEXT_TELEMETRY_DISABLED=1 \
SKIP_ENV_VALIDATION=true \
SKIP_ENV_VALIDATION=${SKIP_ENV_VALIDATION} \
NODE_ENV=production
# Copy installed deps