fixed build command

This commit is contained in:
qugalet 2023-07-13 12:09:18 +03:00
parent 6e51197616
commit d5f3ae25ee

View file

@ -6,12 +6,10 @@ COPY package.json pnpm-lock.yaml ./
RUN npm i -g pnpm
RUN pnpm install --frozen-lockfile --prod
RUN pnpm install --frozen-lockfile
COPY . .
RUN pnpm generate
RUN pnpm build
RUN pnpm generate && pnpm build
ENTRYPOINT [ "./entrypoint.sh" ]