File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -211,6 +211,15 @@ RUN export DEBIAN_FRONTEND=noninteractive \
211211 && apt-get update -y \
212212 && apt-get install -y --no-install-recommends \
213213 git \
214+ zlib1g-dev \
215+ libssl-dev \
216+ # breakpad's build tools require python2 to be available as python on the path
217+ && git clone https://github.com/pyenv/pyenv.git .pyenv \
218+ && export PYENV_ROOT="$(pwd)/.pyenv" \
219+ && export PATH="$PYENV_ROOT/bin:$PATH" \
220+ && eval "$(pyenv init --path)" \
221+ && pyenv install 2.7 \
222+ && pyenv global 2.7 \
214223 # Fetch and activate depot_tools
215224 && cd /root \
216225 && git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git \
@@ -233,7 +242,10 @@ RUN export DEBIAN_FRONTEND=noninteractive \
233242 /tmp/* \
234243 breakpad \
235244 depot_tools \
245+ .pyenv \
236246 && apt-get autoremove -y \
237247 git \
248+ zlib1g-dev \
249+ libssl-dev \
238250 && apt-get clean \
239251 && rm -rf /var/lib/apt/lists/* /var/log/dpkg.log /var/log/apt
Original file line number Diff line number Diff line change 11# Essential cross-compiling build tools for the reMarkable
2- FROM debian:unstable-20220125 -slim
2+ FROM debian:unstable-20230703 -slim
33ARG NGCONFIG="arm-remarkable-linux-gnueabihf"
44ARG CHOST="arm-linux-gnueabihf"
55
You can’t perform that action at this time.
0 commit comments