Deprecate Docker Support (#290)
* remove Dockerfile and docker-compose.yml * remove docker instructions from readme
This commit is contained in:
parent
39ae78b28b
commit
093cb5a178
|
@ -1,8 +0,0 @@
|
||||||
FROM node:8.1.4
|
|
||||||
|
|
||||||
WORKDIR /usr/app
|
|
||||||
|
|
||||||
COPY package.json .
|
|
||||||
RUN npm install --quiet
|
|
||||||
|
|
||||||
COPY . .
|
|
|
@ -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.
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
version: '2'
|
|
||||||
services:
|
|
||||||
web:
|
|
||||||
build: .
|
|
||||||
command: npm run dev
|
|
||||||
volumes:
|
|
||||||
- .:/usr/app/
|
|
||||||
- /usr/app/node_modules
|
|
||||||
ports:
|
|
||||||
- "3000:3000"
|
|
Loading…
Reference in New Issue