Update .github/actions/deploy-quartz/Dockerfile
Some checks failed
Build Quartz site / build (push) Failing after 19s

This commit is contained in:
2023-12-14 23:04:53 +00:00
parent 742ca291a6
commit d8db32cb31

View File

@@ -1,10 +1,14 @@
FROM node:20-slim
COPY content/ content/
COPY quartz/ quartz/
WORKDIR /workspace/Peaceultime/system-aspect/content
# COPY content content
# COPY quartz quartz
RUN mkdir output
RUN cd quartz
RUN npm ci
RUN pwd
CMD ["npx", "quartz", "build", "-d", "../content", "-o", "../output"]