Create Dockerfile
Browse files- Dockerfile +11 -0
Dockerfile
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the WebODM base image
|
| 2 |
+
FROM opendronemap/webodm_webapp:latest
|
| 3 |
+
|
| 4 |
+
# Set the environment variables for WebODM
|
| 5 |
+
ENV WEBODM_PORT=8000
|
| 6 |
+
|
| 7 |
+
# Expose the WebODM port
|
| 8 |
+
EXPOSE 8000
|
| 9 |
+
|
| 10 |
+
# Run the WebODM server
|
| 11 |
+
CMD ["./webodm.sh", "start"]
|