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

Merge pull request #15 from BridgeCityBicycleCoop/development

Rename docker files for automated build.
This commit is contained in:
Drew Larson 2017-01-15 20:15:56 -06:00 committed by GitHub
commit 6a21d0473d
5 changed files with 20 additions and 19 deletions

View File

@ -1,8 +1,14 @@
FROM python:3.6 FROM python:3.6
RUN apt-get install curl
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get install -y nodejs
RUN mkdir /code RUN mkdir /code
WORKDIR /code WORKDIR /code
RUN mkdir requirements RUN mkdir requirements
ADD ./bikeshop_project /code ADD bikeshop_project /code
COPY ./requirements /code/requirements COPY requirements /code/requirements
RUN pip install -r ./requirements/development.txt RUN pip install -r requirements/production.txt
EXPOSE 8000:8000 RUN npm cache clean
RUN npm install --unsafe-perm
RUN npm run build-production
RUN DJANGO_SETTINGS_MODULE=bikeshop.settings.production python manage.py collectstatic --no-input

8
Dockerfile-dev Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.6
RUN mkdir /code
WORKDIR /code
RUN mkdir requirements
ADD ./bikeshop_project /code
COPY ./requirements /code/requirements
RUN pip install -r ./requirements/development.txt
EXPOSE 8000:8000

View File

@ -1,14 +0,0 @@
FROM python:3.6
RUN apt-get install curl
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get install -y nodejs
RUN mkdir /code
WORKDIR /code
RUN mkdir requirements
ADD bikeshop_project /code
COPY requirements /code/requirements
RUN pip install -r requirements/production.txt
RUN npm cache clean
RUN npm install --unsafe-perm
RUN npm run build-production
RUN DJANGO_SETTINGS_MODULE=bikeshop.settings.production python manage.py collectstatic --no-input

View File

@ -3,6 +3,7 @@ services:
workstand: workstand:
build: build:
context: . context: .
dockerfile: Dockerfile-dev
command: python manage.py runserver 0.0.0.0:8000 command: python manage.py runserver 0.0.0.0:8000
ports: ports:
- "8000:8000" - "8000:8000"

View File

@ -13,7 +13,7 @@ services:
workstand: workstand:
build: build:
context: . context: .
dockerfile: Dockerfile-prod dockerfile: Dockerfile
image: bcbc/workstand:production image: bcbc/workstand:production
env_file: env_file:
- workstand.env - workstand.env