Initital commit

This commit is contained in:
2023-07-04 19:57:54 +03:00
commit 4d96d3ca60
6 changed files with 300 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.11-bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y libglib2.0-dev usbutils
RUN pip3 install 'radiacode[examples]' --upgrade
RUN apt-get install -y libusb-1.0-0-dev
COPY . .
RUN pip3 install pyusb
CMD ["python3", "webserver.py"]