mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-04 14:57:27 +00:00

* feat: use flutter_distrubutor to build linux packages * feat: verify deb on Linux * chore: update rpm deps * chore: update codesign files * chore: update rpm make_config.yaml * chore: update release.yml * chore: update release.yml * chore: update feed url * chore: rename AppFlowy to appflowy * chore: update CHANGELOG.md (#7397) * chore: create release path if not exist * feat: support appimage * Revert "feat: support appimage" This reverts commit cb7dcf725c9443f5f9d0e3c3ceb4413a4f875e6a. * fix: cp deb/rpm error * feat: support appimage * chore: add linux build script * feat: add macos build script * feat: update linux scripts * chore: update linux scripts * chore: update relesae script * chore: update macos build scripts * chore: rename macOS package name * chore: add keychain in release.yaml * chore: update macos build steps in release.yaml * chore: update macos script desc * chore: remove sudo * feat: support tar.xz package type * feat: support tar.xz package type * chore: add fuse --------- Co-authored-by: Morn <agedchen@gmail.com>
86 lines
2.7 KiB
Docker
86 lines
2.7 KiB
Docker
#================
|
|
# BUILDER
|
|
#================
|
|
|
|
FROM archlinux/archlinux:base-devel as builder
|
|
RUN chown root:root /usr/bin/sudo && chmod 4755 /usr/bin/sudo
|
|
|
|
# Upgrade the system
|
|
RUN pacman -Syyu --noconfirm
|
|
|
|
# Set up makepkg user and workdir
|
|
ARG user=makepkg
|
|
RUN pacman -S --needed --noconfirm sudo
|
|
RUN useradd --system --create-home $user && \
|
|
echo "$user ALL=(ALL:ALL) NOPASSWD:ALL" >> /etc/sudoers
|
|
ENV PATH="/home/$user/.pub-cache/bin:/home/$user/flutter/bin:/home/$user/flutter/bin/cache/dart-sdk/bin:${PATH}"
|
|
USER $user
|
|
WORKDIR /home/$user
|
|
|
|
# Install Rust and dependencies using pacman
|
|
RUN sudo pacman -S --needed --noconfirm curl base-devel openssl clang cmake ninja pkg-config xdg-user-dirs
|
|
RUN xdg-user-dirs-update
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
RUN source ~/.cargo/env && \
|
|
rustup toolchain install 1.81 && \
|
|
rustup default 1.81
|
|
|
|
# Install Flutter
|
|
RUN sudo pacman -S --noconfirm git tar gtk3
|
|
RUN curl -sSfL \
|
|
--output flutter.tar.xz \
|
|
https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.27.4-stable.tar.xz && \
|
|
tar -xf flutter.tar.xz && \
|
|
rm flutter.tar.xz
|
|
RUN flutter config --enable-linux-desktop
|
|
RUN flutter doctor
|
|
RUN dart pub global activate protoc_plugin 21.1.2
|
|
|
|
# Install build dependencies for AppFlowy using pacman
|
|
RUN sudo pacman -S --needed --noconfirm jemalloc git libkeybinder3 sqlite clang rsync libnotify rocksdb zstd mpv
|
|
RUN sudo ln -s /usr/bin/sha1sum /usr/bin/shasum
|
|
RUN source ~/.cargo/env && cargo install cargo-make --version 0.37.18 --locked
|
|
RUN source ~/.cargo/env && cargo install cargo-binstall --version 1.10.17 --locked
|
|
RUN source ~/.cargo/env && cargo binstall duckscript_cli --locked -y
|
|
|
|
# Build AppFlowy
|
|
COPY . /appflowy
|
|
RUN sudo chown -R $user: /appflowy
|
|
WORKDIR /appflowy
|
|
RUN cd frontend && \
|
|
source ~/.cargo/env && \
|
|
cargo make appflowy-flutter-deps-tools && \
|
|
cargo make flutter_clean && \
|
|
OPENSSL_STATIC=1 ZSTD_SYS_USE_PKG_CONFIG=1 ROCKSDB_LIB_DIR="/usr/lib/" cargo make -p production-linux-x86_64 appflowy-linux
|
|
|
|
|
|
#================
|
|
# APP
|
|
#================
|
|
|
|
FROM archlinux/archlinux
|
|
|
|
# Upgrade the system
|
|
RUN pacman -Syyu --noconfirm
|
|
|
|
# Install runtime dependencies
|
|
RUN pacman -S --noconfirm xdg-user-dirs gtk3 libkeybinder3 libnotify rocksdb && \
|
|
pacman -Scc --noconfirm
|
|
|
|
# Set up appflowy user
|
|
ARG user=appflowy
|
|
ARG uid=1000
|
|
ARG gid=1000
|
|
RUN groupadd --gid $gid $user
|
|
RUN useradd --create-home --uid $uid --gid $gid $user
|
|
USER $user
|
|
|
|
# Set up the AppFlowy app
|
|
WORKDIR /home/$user
|
|
COPY --from=builder /appflowy/frontend/appflowy_flutter/build/linux/x64/release/bundle .
|
|
RUN xdg-user-dirs-update && \
|
|
test -e ./appflowy && \
|
|
file ./appflowy
|
|
|
|
CMD ["./appflowy"]
|