From fb14a360bde336813389fbb9f1d249571b3a6064 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Sun, 10 Oct 2021 18:25:55 +0200 Subject: [PATCH] dockerfile: add $arch to repo uri --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1d82a34..2ae60bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,6 @@ RUN pip install -r requirements.txt COPY . . -RUN python -c "import constants; repos='\n'.join(['\n'.join(['', f'[{repo}]', f'Server = file:///prebuilts/\$repo']) for repo in constants.REPOSITORIES]); print(repos)" | tee -a /etc/pacman.conf +RUN python -c "import constants; repos='\n'.join(['\n'.join(['', f'[{repo}]', f'Server = file:///prebuilts/\$arch/\$repo']) for repo in constants.REPOSITORIES]); print(repos)" | tee -a /etc/pacman.conf WORKDIR /src