Spaces:
Runtime error
Runtime error
Commit
·
c1edaff
1
Parent(s):
44775b8
Update dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -7,15 +7,15 @@ ENV HOME=/home/user \
|
|
7 |
|
8 |
WORKDIR $HOME/app
|
9 |
|
10 |
-
COPY --chown=user
|
|
|
11 |
|
12 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
13 |
#RUN apt update && apt install -y ffmpeg
|
14 |
|
15 |
-
COPY
|
16 |
|
17 |
#COPY . .
|
18 |
#COPY .chainlit .chainlit
|
19 |
|
20 |
-
CMD ["chainlit", "run", "rag_app.py", "--
|
21 |
-
# CMD ["ls", "-a"]
|
|
|
7 |
|
8 |
WORKDIR $HOME/app
|
9 |
|
10 |
+
COPY --chown=user . $HOME/app
|
11 |
+
COPY ./requirements.txt ~/app/requirements.txt
|
12 |
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
#RUN apt update && apt install -y ffmpeg
|
15 |
|
16 |
+
COPY . .
|
17 |
|
18 |
#COPY . .
|
19 |
#COPY .chainlit .chainlit
|
20 |
|
21 |
+
CMD ["chainlit", "run", "rag_app.py", "--port", "7860", "-h"]
|
|