Open
Description
Hello!
As docs says when we don't use Docker, all those requirements.apt Ubuntu 14.04 related packages are installed into activated virtualenv by executing install_os_dependencies.sh script.
But I can't figure out what about docker-compose approach?
When we start compose services during local development (with dev.yml) our django service uses Python 3.5 base docker image without all those OS deps.
And then if we need, for example, create translations with:
docker-compose run --rm -f dev.yml django ./manage.py makemessages -l SOMELOCALE
Django cannot find gettext program installed through docker container...
Is it supposed to satisfy django-batteries os dependencies manually or I'm missing something conceptually?
Maybe I'm asking a dumb question... but could you clarify it for me, please.