From a8442bccc755bbe11040a3d0d22bcb27d17f7375 Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 10 Jul 2026 22:19:11 -0400 Subject: [PATCH] Group the two dep install commands together in Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4c4a83dc..fb1461ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,11 +5,12 @@ WORKDIR /rgbds COPY . . +# Install dependencies RUN apt-get update && \ apt-get install sudo make cmake gcc build-essential -y - -# Install dependencies and compile RGBDS RUN ./.github/scripts/install-deps.sh debian + +# Build RGBDS RUN make -j "$(getconf _NPROCESSORS_ONLN)" CXXFLAGS="-O3 -flto -DNDEBUG -static" PKG_CONFIG="pkg-config --static" Q= # Create the install script