Upload folder using huggingface_hub
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -15,7 +15,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 15 |
COPY . .
|
| 16 |
|
| 17 |
# 6. Expose the port the app runs on
|
| 18 |
-
EXPOSE
|
| 19 |
|
| 20 |
# 7. Define the command to run the application
|
| 21 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
|
| 15 |
COPY . .
|
| 16 |
|
| 17 |
# 6. Expose the port the app runs on
|
| 18 |
+
EXPOSE 7860
|
| 19 |
|
| 20 |
# 7. Define the command to run the application
|
| 21 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:superkart_api"]
|