From eabd4091b2e185c9034825487c11937039efe16c Mon Sep 17 00:00:00 2001 From: Aumetra Weisman Date: Thu, 6 Jun 2024 13:38:39 +0200 Subject: [PATCH] Patch download URL to branch --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index de9c854..b84704f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20 as step1 RUN mkdir /kitsune && \ cd /kitsune && \ - curl https://github.com/kitsune-soc/kitsune/archive/refs/heads/main.zip -Lo main.zip && \ + curl https://github.com/kitsune-soc/kitsune/archive/refs/heads/allocation-strategy-config.zip -Lo main.zip && \ unzip main.zip && \ cd kitsune-main/kitsune-fe && \ yarn install && \