f4exb/sdrangel-docker

SDRangel: Home not writable

yeckel opened this issue · 2 comments

Hi I believe the:
WORKDIR /home/sdr/sdrplay
shall be changed to:
WORKDIR /opt/build
in sdrangel/Dockerfile
Since the /home/sdr/sdrplay is not writable and the build fails.

Shall I make a PR for it?

f4exb commented

Rather this snippet:

WORKDIR /opt/build
RUN mkdir -p /opt/install/libsdrplay/include \
    && mkdir -p /opt/install/libsdrplay/lib \
    && mkdir -p /opt/build/sdrplay
RUN cd sdrplay \
    && wget https://www.sdrplay.com/software/SDRplay_RSP_API-Linux-${SDRPLAY_MAJ}${SDRPLAY_MIN}.run \
&& ...
f4exb commented

Implemented