Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.9.10

WORKDIR /pandwarf/rfcat
COPY . .
RUN apt update && apt install -y usbutils ffmpeg && pip install -r requirements.txt
RUN python setup.py install
RUN apt update && apt install -y usbutils ffmpeg && pip install pipenv
RUN pipenv install --system

CMD [ "bash" ]
17 changes: 17 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pyusb = "==1.2.1"
future = "==0.18.3"
ipython = "==8.10.0"
pyserial = "==3.5"
numpy = "==1.25.2"
requests = "==2.31.0"
pyside2 = "==5.15.2.1"
rfcat = {editable = true, path = "."}

[requires]
python_full_version = "3.9.10"
352 changes: 352 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading