priaansh commited on
Commit
ed80c92
·
verified ·
1 Parent(s): d76a41d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -1,6 +1,13 @@
1
  FROM stephengpope/no-code-architects-toolkit:latest
2
 
 
3
  ENV API_KEY=beast@5707
 
 
 
 
 
 
4
 
5
  EXPOSE 8080
6
 
 
1
  FROM stephengpope/no-code-architects-toolkit:latest
2
 
3
+ # Set required environment variables
4
  ENV API_KEY=beast@5707
5
+ ENV LOCAL_STORAGE_PATH=/tmp
6
+
7
+ # Optional performance tuning
8
+ ENV MAX_QUEUE_LENGTH=10
9
+ ENV GUNICORN_WORKERS=4
10
+ ENV GUNICORN_TIMEOUT=300
11
 
12
  EXPOSE 8080
13