terry-li-hm
commited on
Commit
·
c56c520
1
Parent(s):
2990b6a
pip install
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -7,5 +7,8 @@ WORKDIR $HOME/app
|
|
7 |
COPY --chown=user . $HOME/app
|
8 |
COPY ./requirements.txt ~/app/requirements.txt
|
9 |
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
10 |
COPY . .
|
11 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|
|
|
7 |
COPY --chown=user . $HOME/app
|
8 |
COPY ./requirements.txt ~/app/requirements.txt
|
9 |
RUN pip install -r requirements.txt
|
10 |
+
RUN pip install accelerate
|
11 |
+
RUN pip install -i https://test.pypi.org/simple/ bitsandbytes
|
12 |
+
RUN pip install --upgrade -i https://test.pypi.org/simple/ bitsandbytes
|
13 |
COPY . .
|
14 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|