Revert "Introduce node service to production setup"

This reverts commit 70d5a5b18b.
This commit is contained in:
Nikita P. Shupeyko 2017-06-21 21:56:11 +03:00
parent efc3ab3769
commit 6f6fe04732
2 changed files with 0 additions and 18 deletions

View File

@ -1,11 +0,0 @@
FROM node:7.10-slim
RUN mkdir -p /app
COPY ./package.json /app
WORKDIR /app
RUN npm install && npm cache clean
ENV PATH ./node_modules/.bin/:$PATH

View File

@ -19,7 +19,6 @@ services:
depends_on:
- postgres
- redis
- node
command: /gunicorn.sh
env_file: .env
@ -77,9 +76,3 @@ services:
- redis
command: celery -A {{cookiecutter.project_slug}}.taskapp beat -l INFO
{% endif %}
node:
extends:
service: node
file: ./dev.yml
ports: {}