Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -16,6 +16,9 @@ ENV PYTHONDONTWRITEBYTECODE=1
|
|
| 16 |
# the application crashes without emitting any logs due to buffering.
|
| 17 |
ENV PYTHONUNBUFFERED=1
|
| 18 |
|
|
|
|
|
|
|
|
|
|
| 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
|
|
|
|
| 16 |
# the application crashes without emitting any logs due to buffering.
|
| 17 |
ENV PYTHONUNBUFFERED=1
|
| 18 |
|
| 19 |
+
# Set HOME environment variable
|
| 20 |
+
ENV HOME=/root
|
| 21 |
+
|
| 22 |
# Install ngrok
|
| 23 |
RUN apt-get update && apt-get install -y wget unzip
|
| 24 |
RUN wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
|