This commit is contained in:
Diwakar 2025-05-31 22:50:36 +12:00 committed by GitHub
commit 25ee4a0283
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,7 +32,13 @@ RUN apk add --no-cache git
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
RUN npm ci RUN npm ci
COPY . . # Copy only required files for build
COPY scripts ./scripts
COPY static ./static
COPY vite.config.ts postcss.config.js tailwind.config.js tsconfig.json svelte.config.js ./
COPY CHANGELOG.md ./
COPY src ./src
ENV APP_BUILD_HASH=${BUILD_HASH} ENV APP_BUILD_HASH=${BUILD_HASH}
RUN npm run build RUN npm run build