Skip to content

Commit

Permalink
add new mesa deps, add cargo bin to path
Browse files Browse the repository at this point in the history
  • Loading branch information
aptalca committed May 22, 2024
1 parent 5d246a2 commit 5150cb2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ ARG FFMPEG_VERSION
# common env
ENV \
DEBIAN_FRONTEND="noninteractive" \
MAKEFLAGS="-j4"
MAKEFLAGS="-j4" \
PATH="/root/.cargo/bin:${PATH}"

# versions
ENV \
Expand Down Expand Up @@ -109,13 +110,13 @@ RUN \
tar xf /tmp/rust.tar.gz -C /tmp/rust --strip-components=1 && \
cd /tmp/rust && \
./install.sh && \
cargo install cargo-c && \
cargo install cargo-c cbindgen syn paste && \
python3 -m venv /lsiopy && \
pip install -U --no-cache-dir \
pip \
setuptools \
wheel && \
pip install --no-cache-dir meson cmake mako
pip install --no-cache-dir meson cmake mako ply

# compile 3rd party libs
RUN \
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ ARG FFMPEG_VERSION
# common env
ENV \
DEBIAN_FRONTEND="noninteractive" \
MAKEFLAGS="-j4"
MAKEFLAGS="-j4" \
PATH="/root/.cargo/bin:${PATH}"

# versions
ENV \
Expand Down

0 comments on commit 5150cb2

Please sign in to comment.