13 lines
202 B
YAML
13 lines
202 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
command: gunicorn --bind 0.0.0.0:5000 wsgi:app
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- FLASK_ENV=production
|