Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
another pass for caching/out of date build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-d committed Jun 26, 2016
1 parent 2174661 commit 65ac7a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ before_install:
fi
- echo $DOCKER_TAG
# build docker image
- docker build -t counterparty/counterwallet:$DOCKER_TAG --build-arg TRANSIFEX_USER="$TRANSIFEX_USER" --build-arg TRANSIFEX_PASSWORD="$TRANSIFEX_PASSWORD" .
- docker build -t counterparty/counterwallet:$DOCKER_TAG --no-cache --build-arg TRANSIFEX_USER="$TRANSIFEX_USER" --build-arg TRANSIFEX_PASSWORD="$TRANSIFEX_PASSWORD" .

script:
# run the test suite in the docker container we just made
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ RUN if [ -n "$TRANSIFEX_USER" ] && [ -n "$TRANSIFEX_PASSWORD" ]; then echo "$TRA
# Install project
COPY . /counterwallet
WORKDIR /counterwallet
RUN rm -rf /counterwallet/build
RUN npm -g install npm@latest
RUN npm config set strict-ssl false
ENV PHANTOMJS_CDNURL="http://cnpmjs.org/downloads"
RUN npm install -g bower grunt mocha-phantomjs
#RUN cd src; bower --allow-root --config.interactive=false update; cd ..
RUN cd src; bower --allow-root install; cd ..
RUN cd src; bower --allow-root --config.interactive=false update; cd ..
RUN npm update
RUN grunt build
RUN cp -a /counterwallet/counterwallet.conf.json.example /counterwallet/counterwallet.conf.json
Expand Down

0 comments on commit 65ac7a6

Please sign in to comment.