From 2c3c989480a0b0acba853aefaa23ade6f7bd06be Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Fri, 15 Jan 2021 22:18:53 +0000 Subject: [PATCH] oops, forgot to add python --- .drone.yml | 2 +- Dockerfile | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 Dockerfile diff --git a/.drone.yml b/.drone.yml index df30a58..b65da5a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ steps: - name: build image: golang:latest commands: - - apt install -y curl + - apt install -y python3-pip curl - go mod download - curl -sL https://git.io/goreleaser > goreleaser.sh - chmod +x goreleaser.sh diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 9e5a2f7..0000000 --- a/Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM golang:latest - -COPY . /opt/build - -RUN cd /opt/build && go build *.go -