Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -6
Dockerfile
CHANGED
@@ -15,10 +15,5 @@ RUN pip install detectron2 -f \
|
|
15 |
# Copy the rest of your application code to the container
|
16 |
COPY . .
|
17 |
|
18 |
-
# Expose the port the app will run on
|
19 |
-
EXPOSE 8000
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
# Set the command to run your application
|
24 |
-
CMD ["
|
|
|
15 |
# Copy the rest of your application code to the container
|
16 |
COPY . .
|
17 |
|
|
|
|
|
|
|
|
|
|
|
18 |
# Set the command to run your application
|
19 |
+
CMD ["gunicorn", "-b", "0.0.0.0:8888", "app:app"]
|