Merge pull request #25 from sdn-ninja/Dockerfile-fix

Update Dockerfile
This commit is contained in:
30hours 2024-09-21 10:31:44 +09:30 committed by GitHub
commit eb6f246e4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,6 +28,9 @@ RUN export PATH="/opt/vcpkg:${PATH}" \
# install SDRplay API
RUN export ARCH=$(uname -m) \
&& if [ "$ARCH" = "x86_64" ]; then \
ARCH="amd64"; \
fi \
&& export MAJVER="3.15" \
&& export MINVER="2" \
&& export VER=${MAJVER}.${MINVER} \