From 23558498dd5671a1e7e23574a4a80e8011d253c8 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Thu, 1 Sep 2022 10:29:00 +0200 Subject: [PATCH] Specify build target. Use my fork for the moment --- alpine-build.dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/alpine-build.dockerfile b/alpine-build.dockerfile index fbc7815..8d5300f 100644 --- a/alpine-build.dockerfile +++ b/alpine-build.dockerfile @@ -7,8 +7,10 @@ RUN apk add git \ # download dotnet6-sdk npm # build # Clone repo -RUN git clone https://github.com/Kareadita/Kavita.git -#https://github.com/RealStickman/Kavita.git +#RUN git clone https://github.com/Kareadita/Kavita.git +RUN git clone https://github.com/RealStickman/Kavita.git && \ + cd Kavita && \ + git checkout rs_alpine ENTRYPOINT [ "/bin/ash" ] -CMD [ "" ] # call build script here +CMD [ "build.sh linux-musl-x64" ] # call build script here