From 7c186700f72888b97bf74e10c34f4011f55af458 Mon Sep 17 00:00:00 2001 From: Peter Clemenko Date: Thu, 22 Oct 2020 01:10:56 -0400 Subject: [PATCH] It would help if I used pacman instead of apt on arch. --- backend/app_sdk_blackarch/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/app_sdk_blackarch/Dockerfile b/backend/app_sdk_blackarch/Dockerfile index e48f3095..02480aad 100644 --- a/backend/app_sdk_blackarch/Dockerfile +++ b/backend/app_sdk_blackarch/Dockerfile @@ -2,9 +2,9 @@ FROM peterclemenko/blackarch as base FROM base as builder -RUN apt-get update -RUN apt-get dist-upgrade -y -RUN apt install base-devel libffi musl openssl python python-pip -y +RUN /bin/pacman -Syu --noconfirm + +RUN /bin/pacman -Sy --noconfirm base-devel libffi musl openssl python python-pip -y RUN mkdir /install WORKDIR /install