Browse Source

Rename docker files for automated build.

feature/python-error-tracking
Drew Larson 7 years ago
parent
commit
d6b164dd70
  1. 14
      Dockerfile
  2. 8
      Dockerfile-dev
  3. 14
      Dockerfile-prod
  4. 1
      docker-compose.dev.yml
  5. 2
      docker-compose.prod.yml

14
Dockerfile

@ -1,8 +1,14 @@
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/development.txt
EXPOSE 8000:8000
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

8
Dockerfile-dev

@ -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

14
Dockerfile-prod

@ -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

1
docker-compose.dev.yml

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

2
docker-compose.prod.yml

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

Loading…
Cancel
Save