remove bitbucket pipelines

This commit is contained in:
Zachary Boyd 2017-12-07 15:48:18 -08:00
parent f081dbd2fd
commit b7af228e94
2 changed files with 1 additions and 13 deletions

View file

@ -36,4 +36,4 @@ ADD . /app
# Grab the current local timezone from an external api and save it into /etc/timezone, otherwise Tor will complain and won't start
CMD bash /app/bin/get-timezone.sh > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata && npm start
CMD npm start

View file

@ -1,12 +0,0 @@
image: ubuntu:16.10
pipelines:
default:
- step:
script:
- apt update && apt install -y curl tor git
- curl -sL https://deb.nodesource.com/setup_6.x > /tmp/node_install
- bash /tmp/node_install && apt install -y nodejs
- npm install
- bash /app/bin/get-timezone.sh > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata
- npm test