mirror of
https://github.com/logseq/logseq.git
synced 2026-05-13 15:32:21 +00:00
* migrate yarn to pnpm
* chore: update pnpm version to 10.33.0 across all package.json files
* chore: update .npmrc and package.json for improved dependency management
* chore: unify Clojure, Node, and Java version in workflow files
* fix: enable shamefully-hoist for now and add electron, keytar to onlyBuiltDependencies
* feat: add cider/piggieback dependency and update nREPL middleware configuration to silence warnings
* ensure pnpm setup prior to node setup
* fix: update logseq/bb-tasks git SHA
* feat: add pnpm configuration for onlyBuiltDependencies in package.json
* feat: add onlyBuiltDependencies configuration for better-sqlite3 in pnpm settings
* chore: update pnpm lockfile
* fix: resolve merge conflicts
* fix: remove invisible characters from markdown headers
* fix: update .npmrc comments for clarity on lockfile usage
* Revert "feat: add cider/piggieback dependency and update nREPL middleware configuration to silence warnings"
This reverts commit 70a111936f.
* fix: remove invisible characters from various README files and add .editorconfig
* fix: clarify lockfile resolution process in SKILL.md
---------
Co-authored-by: Tienson Qin <tiensonqin@gmail.com>
37 lines
1.1 KiB
Docker
37 lines
1.1 KiB
Docker
# NOTE: please keep it in sync with .github pipelines
|
|
# NOTE: during testing make sure to change the branch below
|
|
# NOTE: before running the build-docker GH action edit
|
|
# build-docker.yml and change the release channel from :latest to :testing
|
|
|
|
# Builder image
|
|
FROM clojure:temurin-11-tools-deps-1.11.1.1208-bullseye-slim as builder
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Install reqs
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
ca-certificates \
|
|
apt-transport-https \
|
|
gpg \
|
|
build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
|
|
|
|
# install NodeJS & pnpm
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && \
|
|
apt-get update && apt-get install -y nodejs && \
|
|
corepack enable && corepack prepare pnpm@10.33.0 --activate
|
|
|
|
WORKDIR /data
|
|
|
|
# build Logseq static resources
|
|
RUN git clone -b master https://github.com/logseq/logseq.git .
|
|
|
|
RUN pnpm install --config.network-timeout=240000
|
|
|
|
RUN pnpm release
|
|
|
|
# Web App Runner image
|
|
FROM nginx:1.24.0-alpine3.17
|
|
|
|
COPY --from=builder /data/static /usr/share/nginx/html
|