From 0634744835a67ab6ca139aa57748b751f78d1cf0 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Thu, 11 Apr 2019 22:20:28 +0200 Subject: [PATCH] Fix drone file --- .drone.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index 891073b..7488956 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,13 +2,13 @@ pipeline: build: image: python:3 commands: - - apt-get update - - apt install apt-transport-https ca-certificates curl software-properties-common gnupg2 curl + - apt update -y + - apt install -y apt-transport-https ca-certificates curl software-properties-common gnupg2 curl - curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - - add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" - - apt update - - apt install docker-ce - - apt-get install -y curl python-tk + - apt update -y + - apt install -y docker-ce + - apt install -y curl python-tk - pip install -U pip - curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose - chmod +x /usr/local/bin/docker-compose