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

17 lines
406 B
Docker
Raw Normal View History

2016-07-08 10:04:42 -06:00
FROM python:3.5
RUN apt-get update
RUN apt-get install -y nodejs npm
RUN ln -s /usr/bin/nodejs /usr/bin/node
RUN mkdir /code
WORKDIR /code
RUN mkdir requirements
2016-12-30 22:36:59 -06:00
ADD ./bikeshop_project /code
COPY ./requirements /code/requirements
RUN pip install -r ./requirements/development.txt
2016-07-08 10:04:42 -06:00
RUN npm install
2016-10-26 18:29:10 -06:00
RUN npm install -g bower
2016-12-30 22:36:59 -06:00
COPY ./bower.json .
RUN bower install --allow-root
2016-07-08 10:04:42 -06:00
EXPOSE 8000:8000
EXPOSE 3000:3000