mirror of
https://github.com/fspc/workstand.git
synced 2025-02-23 01:13:22 -05:00
Fix
This commit is contained in:
parent
72db0b35a8
commit
01195c8a08
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…
x
Reference in New Issue
Block a user