Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,6 +10,9 @@ RUN pip install --upgrade pip
|
|
10 |
# Install dependencies
|
11 |
RUN pip install -r requirements.txt
|
12 |
|
|
|
|
|
|
|
13 |
# Install localtunnel
|
14 |
RUN npm install -g localtunnel
|
15 |
|
|
|
10 |
# Install dependencies
|
11 |
RUN pip install -r requirements.txt
|
12 |
|
13 |
+
# Install nodejs and npm
|
14 |
+
RUN apt-get update && apt-get install -y nodejs npm
|
15 |
+
|
16 |
# Install localtunnel
|
17 |
RUN npm install -g localtunnel
|
18 |
|