You've already forked system-aspect
12 lines
220 B
Docker
12 lines
220 B
Docker
FROM node:20-slim
|
|
|
|
WORKDIR /workspace/Peaceultime/system-aspect
|
|
|
|
COPY content content
|
|
COPY quartz quartz
|
|
|
|
RUN mkdir output
|
|
RUN cd quartz
|
|
# RUN npm ci
|
|
|
|
CMD ["npx", "quartz", "build", "-d", "../content", "-o", "../output"] |