upd workflow

This commit is contained in:
2025-08-13 22:50:12 +05:00
parent 8afaae2dca
commit fb35acdb20
11 changed files with 46 additions and 289 deletions

View File

@@ -1,5 +1,11 @@
FROM node:lts AS builder
ARG BASE_PATH=./
WORKDIR /src
COPY . /src
RUN yarn config set enableTelemetry 0 && \
yarn install --immutable --network-timeout=300000 && \
yarn build --base=$BASE_PATH
FROM ghcr.io/static-web-server/static-web-server:2
ENV SERVER_ROOT=/app
COPY ./dist /app
COPY --from=builder /src/dist /app