-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update requirements.txt * remove state_of_the_union.txt update gitignore add multithreading * add poetry config * update streamlit version * update Dockerfile * update Dockerfile * fix Dockerfile * update Dockerfile * update README.md * update README.md * update convert.py & pyproject.toml * add tokenizer model * update README & lint * clean for merge
- Loading branch information
1 parent
a6a9dc4
commit f5269f9
Showing
9 changed files
with
3,984 additions
and
158 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
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,11 +1,10 @@ | ||
FROM python:3.10 | ||
FROM python:3.11 | ||
|
||
WORKDIR /srv | ||
|
||
RUN git clone https://github.com/su77ungr/CASALIOY.git | ||
COPY ./requirements.txt /srv/ | ||
COPY ./README.md /srv/ | ||
WORKDIR CASALIOY | ||
|
||
RUN pip3 install -r /srv/requirements.txt --upgrade pip | ||
RUN rm ./requirements.txt | ||
COPY ./example.env /srv/CASALIOY/.env | ||
RUN pip3 install poetry | ||
RUN python3 -m poetry config virtualenvs.create false | ||
RUN python3 -m poetry install | ||
COPY example.env .env |
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
Oops, something went wrong.