Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions ubuntu-22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,20 @@ RUN apt-get update && \
zlib1g-dev && \
rm -rf /var/lib/apt/lists/*

# electron-builder does not work for arm64 as of Aug 16, 2022.
# this is a "temporary" fix. for three plus years.
# https://github.com/jordansissel/fpm/issues/1801#issuecomment-919877499
# located here for https://github.com/Chia-Network/chia-blockchain/pull/20037
RUN apt-get update && \
DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
ruby \
ruby-dev && \
rm -rf /var/lib/apt/lists/* && \
sudo gem install fpm && \
rm -rf /gems/cache/*.gem && \
find /gems/gems/ -name "*.c" -delete && \
find /gems/gems/ -name "*.o" -delete

# Compile newer version of sqlite3 \
RUN cd ~ && \
wget -q https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz && \
Expand Down
Loading