Compare commits

...

2 Commits

Author SHA1 Message Date
coward
ed73c85bb9 Merge branch 'main' of https://gitea.mrx.ltd/go-pkg/wireguard-dashboard
Some checks failed
continuous-integration/drone/tag Build is failing
2024-06-04 10:51:15 +08:00
coward
b9f153836d 🎨 2024-06-04 10:51:01 +08:00

View File

@ -1,14 +1,14 @@
FROM node:18-alpine as build-stage
WORKDIR front
COPY . .
COPY ./web-src .
WORKDIR web-src
RUN ls -lh
RUN corepack enable
RUN corepack prepare pnpm@8.6.10 --activate
RUN npm config set registry https://registry.npmmirror.com
RUN pnpm install --frozen-lockfile
RUN pnpm install
RUN pnpm build