Skip to content

Commit

Permalink
Merge pull request #31 from boostcampaitech4lv23cv1/feat-webrtc
Browse files Browse the repository at this point in the history
Feat webrtc
  • Loading branch information
yyongjae authored Feb 3, 2023
2 parents c4fa581 + 64b17c4 commit 3c130e3
Show file tree
Hide file tree
Showing 5 changed files with 220 additions and 170 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ cython_debug/
*.jpg
*.csv

*.flv
# pytorch lightning
#mlflow
**/logs/
Expand Down
10 changes: 10 additions & 0 deletions streamlit/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM python:3.8
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN pip3 install -r requirements.txt
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -y install libgl1-mesa-glx
EXPOSE 8080
COPY . /app
CMD streamlit run --server.port 8080 --server.enableCORS false HEY-I.py
2 changes: 2 additions & 0 deletions streamlit/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
runtime: custom
env: flex
Loading

0 comments on commit 3c130e3

Please sign in to comment.