Yakova commited on
Commit
428c6c4
·
verified ·
1 Parent(s): 8ed8b52

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM mbonea/whats-ramsey:0.0.1
2
+
3
+ # Expose the port your application runs on
4
+ EXPOSE 7860
5
+
6
+ # Define the command to run the http-server to serve the "public" directory
7
+ CMD ["http-server public -p 7860 & npm start"]