Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -12,6 +12,7 @@ COPY requirements.txt .
|
|
12 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
13 |
COPY . .
|
14 |
#COPY --chown=user . /app
|
15 |
-
CMD ["
|
|
|
16 |
|
17 |
|
|
|
12 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
13 |
COPY . .
|
14 |
#COPY --chown=user . /app
|
15 |
+
CMD ["python", "run", "app.py","-h", "0.0.0.0", "-p", "7860"] # "--root-path", "/", "app.py"<--??
|
16 |
+
|
17 |
|
18 |
|