Update our Dockerfile to base on Debian 13 slim

This commit is contained in:
Rangi
2026-04-12 22:36:41 -04:00
parent 1ff73cd5e0
commit c7663423d6
+2 -2
View File
@@ -1,4 +1,4 @@
FROM debian:12-slim
FROM debian:13-slim
LABEL org.opencontainers.image.source=https://github.com/gbdev/rgbds
ARG version=1.0.1
WORKDIR /rgbds
@@ -9,7 +9,7 @@ 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 ubuntu-22.04
RUN ./.github/scripts/install_deps.sh ubuntu-24.04
RUN make -j CXXFLAGS="-O3 -flto -DNDEBUG -static" PKG_CONFIG="pkg-config --static" Q=
# Create an archive with the compiled executables and all the necessary to install it,