AntDX316 commited on
Commit
edc07fa
·
1 Parent(s): 0a5a462
Files changed (2) hide show
  1. docker-compose.yml +3 -0
  2. requirements.txt +4 -3
docker-compose.yml CHANGED
@@ -5,11 +5,14 @@ services:
5
  build:
6
  context: .
7
  dockerfile: Dockerfile
 
 
8
  ports:
9
  - "7860:7860"
10
  restart: unless-stopped
11
  container_name: grok2-interface
12
  environment:
13
  - NODE_ENV=production
 
14
  volumes:
15
  - ./:/app
 
5
  build:
6
  context: .
7
  dockerfile: Dockerfile
8
+ args:
9
+ - REBUILD=1
10
  ports:
11
  - "7860:7860"
12
  restart: unless-stopped
13
  container_name: grok2-interface
14
  environment:
15
  - NODE_ENV=production
16
+ - PYTHONUNBUFFERED=1
17
  volumes:
18
  - ./:/app
requirements.txt CHANGED
@@ -1,6 +1,7 @@
1
  flask==2.0.1
2
- requests==2.28.1
3
- python-dotenv==0.20.0
 
 
4
  gunicorn==20.1.0
5
- Pillow==9.1.0
6
  Flask-Cors==3.0.10
 
1
  flask==2.0.1
2
+ werkzeug==2.0.3
3
+ requests
4
+ pillow
5
+ python-dotenv
6
  gunicorn==20.1.0
 
7
  Flask-Cors==3.0.10