Skip to content

Commit

Permalink
Sigh, include libopus-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffo99 committed Sep 16, 2023
1 parent 640fd0b commit 5ace1ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ RUN \
fi && \
cargo build --all-features --bins --release --target=${RUSTTARGET} || \
if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then \
apt-get install --assume-yes libssl1.1:amd64 libssl-dev:amd64; \
apt-get install --assume-yes libssl1.1:amd64 libssl-dev:amd64 libopus-dev:amd64; \
fi && \
if [ "${TARGETPLATFORM}" = "linux/arm64" ]; then \
apt-get install --assume-yes libssl1.1:arm64 libssl-dev:arm64; \
apt-get install --assume-yes libssl1.1:arm64 libssl-dev:arm64 libopus-dev:arm64; \
fi && \
if [ "${TARGETPLATFORM}" = "linux/arm/v7" ]; then \
apt-get install --assume-yes libssl1.1:armhf libssl-dev:armhf; \
apt-get install --assume-yes libssl1.1:armhf libssl-dev:armhf libopus-dev:armhf; \
fi && \
cargo build --all-features --bins --release --target=${RUSTTARGET}

Expand Down

0 comments on commit 5ace1ae

Please sign in to comment.