Skip to content

Commit

Permalink
Add libedit library
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Sep 21, 2022
1 parent 5668527 commit f032caf
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/cross-linux-arm/Dockerfile.11
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
FROM yosyshq/cross-linux-arm:1.0

RUN chmod -R o+w /opt/rust && RUSTUP_HOME=/opt/rust/rustup CARGO_HOME=/opt/rust/cargo rustup update

RUN set -e -x ;\
apt -y update ;\
apt -y install \
libedit-dev; \
apt -y autoremove ;\
rm -rf /var/lib/apt/lists/*
7 changes: 7 additions & 0 deletions docker/cross-linux-arm64/Dockerfile.11
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
FROM yosyshq/cross-linux-arm64:1.0

RUN chmod -R o+w /opt/rust && RUSTUP_HOME=/opt/rust/rustup CARGO_HOME=/opt/rust/cargo rustup update

RUN set -e -x ;\
apt -y update ;\
apt -y install \
libedit-dev:arm64; \
apt -y autoremove ;\
rm -rf /var/lib/apt/lists/*
7 changes: 7 additions & 0 deletions docker/cross-linux-riscv64/Dockerfile.11
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
FROM yosyshq/cross-linux-riscv64:1.0

RUN chmod -R o+w /opt/rust && RUSTUP_HOME=/opt/rust/rustup CARGO_HOME=/opt/rust/cargo rustup update

RUN set -e -x ;\
apt -y update ;\
apt -y install \
libedit-dev:riscv64; \
apt -y autoremove ;\
rm -rf /var/lib/apt/lists/*
7 changes: 7 additions & 0 deletions docker/cross-linux-x64/Dockerfile.11
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
FROM yosyshq/cross-linux-x64:1.0

RUN chmod -R o+w /opt/rust && RUSTUP_HOME=/opt/rust/rustup CARGO_HOME=/opt/rust/cargo rustup update

RUN set -e -x ;\
apt -y update ;\
apt -y install \
libedit-dev; \
apt -y autoremove ;\
rm -rf /var/lib/apt/lists/*

0 comments on commit f032caf

Please sign in to comment.