dragg2 commited on
Commit
0e1fecb
·
verified ·
1 Parent(s): 8074491

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM ghcr.io/zeropointsix/outlook-email-plus:latest
2
+
3
+ ENV PORT=7860
4
+ EXPOSE $PORT
5
+
6
+ CMD ["sh", "-c", "gunicorn -w 1 -b 0.0.0.0:${PORT:-5000} --timeout 120 --access-logfile - web_outlook_app:app"]