Group the two dep install commands together in Dockerfile

This commit is contained in:
Rangi
2026-07-10 23:12:49 -04:00
committed by Rangi
parent 00006a9d00
commit a8442bccc7
+3 -2
View File
@@ -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