Deprecate Docker Support (#290)

* remove Dockerfile and docker-compose.yml

* remove docker instructions from readme
This commit is contained in:
Daniel Ternyak 2017-10-14 12:17:50 -07:00 committed by GitHub
parent 39ae78b28b
commit 093cb5a178
3 changed files with 0 additions and 25 deletions

View File

@ -1,8 +0,0 @@
FROM node:8.1.4
WORKDIR /usr/app
COPY package.json .
RUN npm install --quiet
COPY . .

View File

@ -63,13 +63,6 @@ npm run derivation-checker
├── jest_config - Jest configuration ├── jest_config - Jest configuration
``` ```
## Docker setup
You should already have docker and docker-compose setup for your platform as a pre-req.
```bash
docker-compose up
```
## Style Guides and Philosophies ## Style Guides and Philosophies
The following are guides for developers to follow for writing compliant code. The following are guides for developers to follow for writing compliant code.

View File

@ -1,10 +0,0 @@
version: '2'
services:
web:
build: .
command: npm run dev
volumes:
- .:/usr/app/
- /usr/app/node_modules
ports:
- "3000:3000"