This commit is contained in:
Keyvan Fatehi
2023-01-01 21:19:21 -08:00
parent 6838d51074
commit 4b5bcb85ac
8 changed files with 8 additions and 1 deletions

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM cereal
RUN pip3 install --no-cache-dir aiortc aiohttp

2
build.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
docker build -t webrtc-body .

2
cereal

Submodule cereal updated: 959ff79963...f200875ca3

2
shell.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
docker run --rm -v $PWD/webrtc:/project/webrtc -w /project/webrtc -it webrtc-body bash

View File