Files
system-aspect/.github/actions/deploy-quartz/Dockerfile
Peaceultime f3b6c46fed
Some checks failed
Build Quartz site / build (push) Failing after 46s
Tests
2023-12-14 15:39:38 +01:00

7 lines
280 B
Docker

FROM node:20-slim as builder
WORKDIR /usr/src/app
COPY /workspace/jackyzha0/quartz /usr/src/app
RUN npm ci
COPY /workspace/Peaceultime/system-aspect /workspace/Peaceultime/system-aspect
CMD ["npx", "quartz", "build", "-d", "/workspace/Peaceultime/system-aspect", "-o", "/output"]