This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Beyza Yildirim
authored and
Beyza Yildirim
committed
Jan 23, 2022
1 parent
c324cb9
commit eee4d8d
Showing
5 changed files
with
24 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM python:3.8 | ||
|
||
WORKDIR /better.me | ||
|
||
COPY requirements.txt ./requirements.txt | ||
|
||
RUN pip3 install -r requirements.txt | ||
|
||
EXPOSE 8080 | ||
|
||
COPY . /better.me | ||
|
||
CMD streamlit run --server.port 8080 --server.enableCORS false app.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,4 @@ | ||
runtime: custom | ||
env: flex | ||
manual_scaling: | ||
instances: 1 |
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
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 |
---|---|---|
@@ -1,6 +1,11 @@ | ||
-f https://download.pytorch.org/whl/torch_stable.html | ||
torch==1.8.1+cpu | ||
pytorch_lightning | ||
streamlit~=1.4.0 | ||
watchdog | ||
requests~=2.27.1 | ||
pandas~=1.3.5 | ||
numpy~=1.21.5 | ||
altair~=4.2.0 | ||
plotly | ||
transformers[torch] |