terry-li-hm
commited on
Commit
·
5fc5163
1
Parent(s):
4100276
Comment out `Dockerfile`
Browse files- Dockerfile +14 -14
Dockerfile
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
FROM python:3.9
|
2 |
-
RUN useradd -m -u 1000 user
|
3 |
-
USER user
|
4 |
-
ENV HOME=/home/user \
|
5 |
-
|
6 |
-
WORKDIR $HOME/app
|
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"]
|
|
|
1 |
+
# FROM python:3.9
|
2 |
+
# RUN useradd -m -u 1000 user
|
3 |
+
# USER user
|
4 |
+
# ENV HOME=/home/user \
|
5 |
+
# PATH=/home/user/.local/bin:$PATH
|
6 |
+
# WORKDIR $HOME/app
|
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"]
|