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

Install bower stuff.

This commit is contained in:
Drew Larson 2017-01-15 21:08:23 -06:00
parent 84b48baf62
commit 9aabc3d267

View File

@ -9,6 +9,8 @@ ADD bikeshop_project /code
COPY requirements /code/requirements COPY requirements /code/requirements
RUN pip install -r requirements/production.txt RUN pip install -r requirements/production.txt
RUN npm cache clean RUN npm cache clean
RUN npm install bower -g
RUN bower install
RUN npm install --unsafe-perm RUN npm install --unsafe-perm
RUN npm run build-production RUN npm run build-production
RUN DJANGO_SETTINGS_MODULE=bikeshop.settings.production python manage.py collectstatic --no-input RUN DJANGO_SETTINGS_MODULE=bikeshop.settings.production python manage.py collectstatic --no-input