From b245c88b164aad13172b9b6fcae8d31c8b56a4eb Mon Sep 17 00:00:00 2001 From: meliurwen Date: Fri, 4 Jun 2021 14:18:27 +0200 Subject: [PATCH] Fixed deprecated package in alpine repo --- kiwiirc/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwiirc/Dockerfile b/kiwiirc/Dockerfile index 1bdf27b..95821d9 100644 --- a/kiwiirc/Dockerfile +++ b/kiwiirc/Dockerfile @@ -1,7 +1,7 @@ FROM node:current-alpine AS builder -RUN apk --update add git python make g++ && \ - git clone https://github.com/kiwiirc/kiwiirc.git && \ +RUN apk --update add git python3 make g++ && \ + git clone --depth 1 https://github.com/kiwiirc/kiwiirc.git && \ cd kiwiirc && \ yarn install && \ yarn run build