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