From aa4c250e790d6f089790a0ca71a5eeb21776a777 Mon Sep 17 00:00:00 2001 From: garikello3d Date: Tue, 26 Dec 2023 23:56:39 +0100 Subject: [PATCH] wip: working version for 3 linux distros based on docker --- .gitignore | 2 ++ scripts/Dockerfile.template | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6985cf1..c99350b 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + +scripts/build \ No newline at end of file diff --git a/scripts/Dockerfile.template b/scripts/Dockerfile.template index be578bd..42d598a 100644 --- a/scripts/Dockerfile.template +++ b/scripts/Dockerfile.template @@ -4,7 +4,7 @@ FROM $OS ARG PAC RUN rm /bin/sh && ln -s /bin/bash /bin/sh -RUN $PAC update && $PAC install -y git gcc curl +RUN $PAC -y update && $PAC install -y git gcc curl RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup && sh /tmp/rustup -y ADD scripts/build-internal.sh /