diff --git a/Dockerfile b/Dockerfile index 63a598a..79a134a 100644 --- a/Dockerfile +++ b/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