Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -20,4 +20,7 @@ RUN pip install -r requirements.txt
|
|
20 |
# Copy the rest of the application
|
21 |
COPY . /app/
|
22 |
|
|
|
|
|
|
|
23 |
CMD [ "python", "app.py" ]
|
|
|
20 |
# Copy the rest of the application
|
21 |
COPY . /app/
|
22 |
|
23 |
+
# Add Env variable
|
24 |
+
ENV GRADIO_SERVER_NAME=0.0.0.0
|
25 |
+
|
26 |
CMD [ "python", "app.py" ]
|