Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -26,8 +26,8 @@ RUN curl -o ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-am
|
|
26 |
mv ngrok /usr/local/bin/ngrok && \
|
27 |
rm ngrok.zip
|
28 |
|
29 |
-
# Set ngrok authentication token
|
30 |
-
RUN
|
31 |
|
32 |
# Command to run the application
|
33 |
CMD ["sh", "-c", "ngrok http 8000 & python app/app.py"]
|
|
|
26 |
mv ngrok /usr/local/bin/ngrok && \
|
27 |
rm ngrok.zip
|
28 |
|
29 |
+
# Set the ngrok authentication token directly
|
30 |
+
RUN ngrok authtoken 2e6JSMo1mBy4br3Zfkh5ZxjNi8k_7t1xRvVGdwSQhf4uUmTZp
|
31 |
|
32 |
# Command to run the application
|
33 |
CMD ["sh", "-c", "ngrok http 8000 & python app/app.py"]
|