Browse Source

Fix

feature/python-error-tracking
Drew Larson 7 years ago
parent
commit
01195c8a08
  1. 12
      Dockerfile

12
Dockerfile

@ -5,14 +5,12 @@ RUN ln -s /usr/bin/nodejs /usr/bin/node
RUN mkdir /code
WORKDIR /code
RUN mkdir requirements
ADD bikeshop_project /code
COPY requirements /code/requirements
RUN pip install -r requirements/development.txt
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
COPY ./bower.json .
RUN bower install --allow-root
EXPOSE 8000:8000
EXPOSE 3000:3000
CMD python manage.py runserver 0.0.0.0:8000

Loading…
Cancel
Save