racorus commited on
Commit
7c084e1
·
verified ·
1 Parent(s): 03881de

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]