Remove docker stuff for now

pull/58/head
Will Piers 2016-09-16 11:32:31 -07:00
parent b575628553
commit fa00720883
2 changed files with 0 additions and 28 deletions

View File

@ -1,17 +0,0 @@
FROM mhart/alpine-node:latest
WORKDIR /ui
ADD ui /ui
RUN npm install
# Build assets to ./ui/build
RUN npm build
# Run the image as a non-root user
RUN adduser -D mrfusion
USER mrfusion
# Start the server.
# in the future we'd start the go process here and serve the static assets in /build
CMD npm start

View File

@ -19,14 +19,3 @@ dependencies:
test:
override:
- make test
- docker build --rm=false -t influxdata/mrfusion .
- docker run -d -p 8080:5000 -e PORT=5000 influxdata/mrfusion; sleep 10
- curl --retry 10 --retry-delay 5 -v http://localhost:8080
deployment:
heroku:
branch: develop
commands:
- docker login -e $HEROKU_EMAIL -u $HEROKU_EMAIL -p $HEROKU_PASS registry.heroku.com
- docker tag influxdata/mrfusion registry.heroku.com/mrfusion-acc/web
- docker push registry.heroku.com/mrfusion-acc/web