dashboard
repositories
filestore
activity
search
login
scapegoat
/
Docs2
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat(i18n): localize the min read string for the nl-NL locale (#850)
Emile Bangma
2024-02-12
5dc4f21a4baf564ede85d8e702ef5b19c96657a3
[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"]