mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 17:22:18 +03:00
23 lines
710 B
Plaintext
23 lines
710 B
Plaintext
FROM node:16-alpine as builder
|
|
WORKDIR /app
|
|
RUN apk add git && npm i -g pnpm@7
|
|
COPY . .
|
|
# RUN apk add g++ make python3 git libpng-dev
|
|
RUN --mount=type=cache,target=/app/node_modules,rw,sharing=private pnpm i --frozen-lockfile --store=node_modules/.pnpm-store --filter "!ligo-virgo-e2e" --filter "!keck" --filter "!venus" && pnpm run build:local --skip-nx-cache
|
|
|
|
FROM node:16-alpine as relocate
|
|
WORKDIR /app
|
|
COPY --from=builder /app/dist/apps/ligo-virgo ./dist
|
|
COPY --from=builder /app/.github/deployment/Caddyfile-affine ./Caddyfile
|
|
RUN rm ./dist/*.txt
|
|
|
|
# =============
|
|
# AFFiNE image
|
|
# =============
|
|
FROM caddy:2.4.6-alpine as AFFiNE
|
|
WORKDIR /app
|
|
COPY --from=relocate /app .
|
|
|
|
EXPOSE 3000
|
|
CMD ["caddy", "run"]
|