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