1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 01:13:22 -05:00

Add more build steps!

This commit is contained in:
Drew Larson 2016-10-26 18:29:10 -06:00
parent d69da99c30
commit f728de40d7

View File

@ -9,6 +9,10 @@ ADD bikeshop_project /code
COPY requirements /code/requirements
RUN pip install -r requirements/development.txt
RUN npm install
RUN npm install -g bower
COPY bower.json
RUN bower install
RUN python manage.py migrate
EXPOSE 8000:8000
EXPOSE 3000:3000
CMD python manage.py runserver 0.0.0.0:8000