Update Dockerfile

further fix
This commit is contained in:
sdn-ninja 2024-09-20 23:47:23 +01:00 committed by GitHub
parent 40165c58b3
commit f68f794a73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,10 +27,9 @@ RUN export PATH="/opt/vcpkg:${PATH}" \
&& vcpkg install --clean-after-build
# install SDRplay API
RUN if [ $(uname -m) = "x86_64" ] || [ $(uname -m) = "amd64" ]; then \
export ARCH="amd64"; \
else \
export ARCH=$(uname -m); \
RUN export ARCH=$(uname -m) \
&& if [ "$ARCH" = "x86_64" ]; then \
ARCH="amd64"; \
fi \
&& export MAJVER="3.15" \
&& export MINVER="2" \