💚 Fix dockerfile issue in CI

This commit is contained in:
LittleSheep 2024-02-29 22:28:41 +08:00
parent 95328f42c2
commit d80e755b4a

View File

@ -5,7 +5,7 @@ RUN apk add nodejs npm
WORKDIR /source WORKDIR /source
COPY . . COPY . .
WORKDIR /source/pkg/view WORKDIR /source/pkg/views
RUN npm install RUN npm install
RUN npm run build RUN npm run build
WORKDIR /source WORKDIR /source
@ -18,4 +18,4 @@ COPY --from=identity-server /dist /identity/server
EXPOSE 8444 EXPOSE 8444
CMD ["/identity/server"] CMD ["/identity/server"]