mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-05 22:47:04 +00:00
add docker builds for uhd and red pitaya
This commit is contained in:
parent
320f64a611
commit
6c8cadace6
6 changed files with 94 additions and 1 deletions
|
|
@ -17,6 +17,8 @@ RUN /install-dependencies-rtlsdr.sh &&\
|
|||
/install-dependencies-perseus.sh &&\
|
||||
/install-dependencies-fcdpp.sh &&\
|
||||
/install-dependencies-radioberry.sh &&\
|
||||
/install-dependencies-uhd.sh &&\
|
||||
/install-dependencies-redpitaya.sh &&\
|
||||
/install-connectors.sh &&\
|
||||
rm /install-dependencies-*.sh &&\
|
||||
rm /install-lib.*.patch && \
|
||||
|
|
|
|||
8
docker/Dockerfiles/Dockerfile-redpitaya
Normal file
8
docker/Dockerfiles/Dockerfile-redpitaya
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
ARG ARCHTAG
|
||||
FROM openwebrx-soapysdr-base:$ARCHTAG
|
||||
|
||||
COPY docker/scripts/install-dependencies-redpitaya.sh /
|
||||
RUN /install-dependencies-redpitaya.sh &&\
|
||||
rm /install-dependencies-redpitaya.sh
|
||||
|
||||
COPY . /opt/openwebrx
|
||||
8
docker/Dockerfiles/Dockerfile-uhd
Normal file
8
docker/Dockerfiles/Dockerfile-uhd
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
ARG ARCHTAG
|
||||
FROM openwebrx-soapysdr-base:$ARCHTAG
|
||||
|
||||
COPY docker/scripts/install-dependencies-uhd.sh /
|
||||
RUN /install-dependencies-uhd.sh &&\
|
||||
rm /install-dependencies-uhd.sh
|
||||
|
||||
COPY . /opt/openwebrx
|
||||
Loading…
Add table
Add a link
Reference in a new issue