mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-15 14:10:13 +01:00
57 lines
1.3 KiB
Docker
57 lines
1.3 KiB
Docker
FROM --platform=$BUILDPLATFORM node:21 AS node-build
|
|
|
|
ARG NPM_REGISTRY=
|
|
|
|
WORKDIR /app
|
|
ADD app/package.json app/pnpm* app/.npmrc .
|
|
|
|
RUN <<EORUN
|
|
#!/bin/bash -e
|
|
corepack enable
|
|
corepack install --global $(node -e 'console.log(require("./package.json").packageManager)')
|
|
npm config set registry ${NPM_REGISTRY}
|
|
pnpm install --silent
|
|
EORUN
|
|
|
|
ADD app/ .
|
|
RUN <<EORUN
|
|
#!/bin/bash -e
|
|
pnpm run build
|
|
mkdir /artifacts
|
|
mv appearance stage guide changelogs /artifacts/
|
|
EORUN
|
|
|
|
FROM golang:1.25-alpine AS go-build
|
|
|
|
RUN <<EORUN
|
|
#!/bin/sh -e
|
|
apk add --no-cache gcc musl-dev
|
|
go env -w GO111MODULE=on
|
|
go env -w CGO_ENABLED=1
|
|
EORUN
|
|
|
|
WORKDIR /kernel
|
|
ADD kernel/go.* .
|
|
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg \
|
|
go mod download
|
|
|
|
ADD kernel/ .
|
|
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg \
|
|
go build --tags fts5 -v -ldflags "-s -w"
|
|
|
|
FROM alpine:latest
|
|
LABEL maintainer="Liang Ding<845765@qq.com>"
|
|
|
|
RUN apk add --no-cache ca-certificates tzdata su-exec
|
|
|
|
ENV TZ=Asia/Shanghai
|
|
ENV HOME=/home/siyuan
|
|
ENV RUN_IN_CONTAINER=true
|
|
EXPOSE 6806
|
|
|
|
WORKDIR /opt/siyuan/
|
|
COPY --from=go-build --chmod=755 /kernel/kernel /kernel/entrypoint.sh .
|
|
COPY --from=node-build /artifacts .
|
|
|
|
ENTRYPOINT ["/opt/siyuan/entrypoint.sh"]
|
|
CMD ["/opt/siyuan/kernel"]
|