mirror of
https://github.com/30hours/blah2.git
synced 2024-11-18 12:33:58 +00:00
Update Dockerfile
further fix
This commit is contained in:
parent
40165c58b3
commit
f68f794a73
1 changed files with 4 additions and 5 deletions
|
@ -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" \
|
||||
|
|
Loading…
Reference in a new issue