Files
system-aspect/.github/actions/deploy-quartz/Dockerfile
Peaceultime 6666100f76
Some checks failed
Build Quartz site / build (push) Failing after 10s
Tests
2023-12-14 15:31:37 +01:00

7 lines
249 B
Docker

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