Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -19,7 +19,7 @@ ENV PYTHONUNBUFFERED=1
|
|
19 |
# Install ngrok
|
20 |
RUN apt-get update && apt-get install -y wget unzip
|
21 |
RUN wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
|
22 |
-
RUN unzip ngrok-stable-linux-amd64.zip -d /
|
23 |
|
24 |
WORKDIR /app
|
25 |
|
@@ -69,4 +69,4 @@ EXPOSE 8501
|
|
69 |
|
70 |
# Run the application.
|
71 |
# CMD ["bash", "-c", "uvicorn main:app --host 0.0.0.0 --port 7860 & streamlit run BrainBot.py --server.port 8501"]
|
72 |
-
CMD ["bash", "-c", "ngrok http 7860 & uvicorn main:app --host 0.0.0.0 --port 7860 & streamlit run BrainBot.py --server.port 8501"]
|
|
|
19 |
# Install ngrok
|
20 |
RUN apt-get update && apt-get install -y wget unzip
|
21 |
RUN wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
|
22 |
+
RUN unzip ngrok-stable-linux-amd64.zip -d /home/ngrok
|
23 |
|
24 |
WORKDIR /app
|
25 |
|
|
|
69 |
|
70 |
# Run the application.
|
71 |
# CMD ["bash", "-c", "uvicorn main:app --host 0.0.0.0 --port 7860 & streamlit run BrainBot.py --server.port 8501"]
|
72 |
+
CMD ["bash", "-c", "/home/ngrok/ngrok http 7860 & uvicorn main:app --host 0.0.0.0 --port 7860 & streamlit run BrainBot.py --server.port 8501"]
|