Files
system-aspect/.github/actions/deploy-quartz/Dockerfile
Peaceultime 14c60e7818
Some checks failed
Deploy Quartz site to GitHub Pages / build (push) Failing after 12s
New Dockerfile
2023-12-14 15:15:22 +01:00

8 lines
302 B
Docker

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