Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bertonha/docker-python-node

docker base to projects with python and node
https://github.com/bertonha/docker-python-node

Last synced: about 21 hours ago
JSON representation

docker base to projects with python and node

Awesome Lists containing this project

README

        

Docker base to use with you project with python and node projects eg. Django + AngularJS

Extending it:

FROM bertonha/python-node

RUN npm install -g bower coffee-script

RUN pip install gunicorn

ADD requirements/* /tmp/requirements/
RUN pip install -r /tmp/requirements/production.txt

WORKDIR /code