From b7af228e9493498b35eaf35a653617f465ac91b2 Mon Sep 17 00:00:00 2001 From: Zachary Boyd Date: Thu, 7 Dec 2017 15:48:18 -0800 Subject: [PATCH] remove bitbucket pipelines --- Dockerfile | 2 +- bitbucket-pipelines.yml | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 bitbucket-pipelines.yml diff --git a/Dockerfile b/Dockerfile index ea8c1af..d3f7008 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ No newline at end of file +CMD npm start \ No newline at end of file diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 5237513..0000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -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 \ No newline at end of file