dashboard
repositories
filestore
activity
search
login
scapegoat
/
Docs2
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
fix: "draft" true or false in frontmatter still removes from publishing #12...
Seohyun Kim
2024-07-01
21e75acc8d292c98a201e539d6f8ce4bd2941077
[scapegoat/Docs2.git]
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
FROM node:20-slim as builder
WORKDIR /usr/src/app
COPY package.json .
COPY package-lock.json* .
RUN npm ci
FROM node:20-slim
WORKDIR /usr/src/app
COPY --from=builder /usr/src/app/ /usr/src/app/
COPY . .
CMD ["npx", "quartz", "build", "--serve"]