Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -8,5 +8,4 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 8 |
|
| 9 |
COPY app.py .
|
| 10 |
|
| 11 |
-
|
| 12 |
-
CMD ["sh", "-c", "uvicorn app:app --host 0.0.0.0 --port $PORT"]
|
|
|
|
| 8 |
|
| 9 |
COPY app.py .
|
| 10 |
|
| 11 |
+
CMD sh -c "uvicorn app:app --host 0.0.0.0 --port ${PORT}"
|
|
|