加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 765 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Sandbox test environment for HackRF
FROM ubuntu:20.04
CMD ["/bin/bash"]
# Override interactive installations and install prerequisites
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
dfu-util \
gcc-arm-none-eabi \
git \
libfftw3-dev \
libusb-1.0-0-dev \
pkg-config \
python3 \
python3-pip \
python-is-python3 \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install git+https://github.com/CapableRobot/CapableRobot_USBHub_Driver --upgrade
# Serial numbers for EUT and TESTER devices connected to the test server
ENV EUT=RunningFromRAM
ENV TESTER=0000000000000000325866e629a25623
# Inform Docker that the container is listening on port 8080 at runtime
EXPOSE 8080
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化