From 1e9f611ea3cef773a7833dc7e9c3ad73f3e412f8 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Sun, 14 Nov 2021 13:49:01 -0600 Subject: [PATCH] Use Alpine image instead of dotnet for zipping files --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 8e62704..3208c91 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,8 +5,10 @@ type: docker steps: - name: build - image: mcr.microsoft.com/dotnet/sdk:5.0 + image: alpine commands: + - curl -LJO https://dot.net/v1/dotnet-install.sh + - ./dotnet-install.sh -c 5.0 - ./build.sh - ./zip-files.sh