Spaces:
Paused
Paused
rcwaterman
commited on
Commit
•
3afd565
1
Parent(s):
e5102a5
enabling network
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -4,6 +4,7 @@ RUN apt-get update && apt-get install -y \
|
|
4 |
net-tools \
|
5 |
iputils-ping
|
6 |
EXPOSE 8080
|
|
|
7 |
EXPOSE 80
|
8 |
EXPOSE 443
|
9 |
RUN useradd -m -u 1000 user
|
@@ -15,4 +16,4 @@ COPY --chown=user . $HOME/app
|
|
15 |
COPY ./requirements.txt ~/app/requirements.txt
|
16 |
RUN pip install -r requirements.txt
|
17 |
COPY . .
|
18 |
-
CMD ["chainlit", "run", "app.py", "--port", "
|
|
|
4 |
net-tools \
|
5 |
iputils-ping
|
6 |
EXPOSE 8080
|
7 |
+
EXPOSE 7860
|
8 |
EXPOSE 80
|
9 |
EXPOSE 443
|
10 |
RUN useradd -m -u 1000 user
|
|
|
16 |
COPY ./requirements.txt ~/app/requirements.txt
|
17 |
RUN pip install -r requirements.txt
|
18 |
COPY . .
|
19 |
+
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|