-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from boostcampaitech4lv23cv1/feat-webrtc
Feat webrtc
- Loading branch information
Showing
5 changed files
with
220 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,6 +178,7 @@ cython_debug/ | |
*.jpg | ||
*.csv | ||
|
||
*.flv | ||
# pytorch lightning | ||
#mlflow | ||
**/logs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
runtime: custom | ||
env: flex |
Oops, something went wrong.