Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +9 -0
Dockerfile
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM mdciri/bone-fracture-detection:latest
|
2 |
+
# Expose the port your container uses (8501)
|
3 |
+
EXPOSE 8501
|
4 |
+
# Tell Spaces to use port 7860 by setting the PORT environment variable.
|
5 |
+
ENV PORT=7860
|
6 |
+
# If your container’s startup command is already defined in the image,
|
7 |
+
# no CMD is needed. Otherwise, add it here.
|
8 |
+
# For example:
|
9 |
+
# CMD ["python", "app/webapp.py"]
|