Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -6,8 +6,7 @@ ENV HOME=/home/user \
|
|
6 |
WORKDIR $HOME/app
|
7 |
COPY --chown=user . $HOME/app
|
8 |
COPY ./requirements2.txt ~/app/requirements2.txt
|
9 |
-
COPY ./Tiny_Agents/src ~/app/src
|
10 |
-
|
11 |
RUN pip install -r requirements2.txt
|
|
|
12 |
|
13 |
CMD ["chainlit", "run", "src/UI/app.py", "--port", "7860"]
|
|
|
6 |
WORKDIR $HOME/app
|
7 |
COPY --chown=user . $HOME/app
|
8 |
COPY ./requirements2.txt ~/app/requirements2.txt
|
|
|
|
|
9 |
RUN pip install -r requirements2.txt
|
10 |
+
COPY ./Tiny_Agents/src ~/app/src
|
11 |
|
12 |
CMD ["chainlit", "run", "src/UI/app.py", "--port", "7860"]
|