Spaces:
Sleeping
Sleeping
version: "3.8" | |
services: | |
web: | |
build: | |
context: . | |
dockerfile: Dockerfile | |
container_name: emotion_recognition_app | |
ports: | |
- "8000:8000" | |
volumes: | |
- .:/app | |
working_dir: /app | |
environment: | |
- DJANGO_SETTINGS_MODULE=django_app.settings | |
command: python manage.py runserver 0.0.0.0:8000 |