Skip to content

Commit

Permalink
Merge pull request #103 from visionappscz/feature/travis-slack
Browse files Browse the repository at this point in the history
Feature/travis slack
  • Loading branch information
adamkudrna authored Apr 14, 2017
2 parents aad722e + 365d1d8 commit 7ccaced
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
language: node_js
node_js:
- "5.5"
- '7'
notifications:
slack:
secure: j8KyxkdFp5XqzVUPXLWP6vkk7oR7mYbDIgY5GNPJjUSiCZUQTtp2PfsYsjql8uM1pH2yv/CK1/xMLi4eN34QVxJILdmtyVQ8+k6arfRwjUVjimhS0jPT4KuMPwHYc7jvmEYl6x816HpGZiK6RkSINXYd9U6odsCWIS1DafQXA3Y=
before_install:
- npm install -g grunt-cli
- npm install -g bower
- npm install -g grunt-cli
- npm install -g bower
install:
- npm install
- bower install
- npm install
- bower install
before_script:
- grunt
- grunt
7 changes: 2 additions & 5 deletions docker/grunt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
FROM debian:latest


RUN apt-get update && apt-get install -y git git-core curl bzip2
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get install nodejs
RUN curl -sL https://deb.nodesource.com/setup_7.x | bash -
RUN apt-get install nodejs
RUN npm install --global grunt-cli
RUN npm install --global bower
RUN mkdir /workspace
RUN useradd -s /bin/bash docker-container-user
RUN mkdir /home/docker-container-user


COPY ./init-container.sh /root/init-container.sh
WORKDIR /workspace

2 changes: 1 addition & 1 deletion docker/grunt/init-container.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#/usr/bin/env sh
#!/usr/bin/env sh

# This script is to be executed when the docker container is started

Expand Down

0 comments on commit 7ccaced

Please sign in to comment.