Fix: use CC=gcc CXX=g++ instead of full paths for QEMU compatibility

This commit is contained in:
2026-04-02 22:47:22 +00:00
parent 14467bef70
commit 2ed1b1e2dd

View File

@@ -30,8 +30,8 @@ RUN rm -rf /var/lib/apt/lists/*
RUN rm -rf /var/cache/apt/archives
# Set compiler paths
ENV CC=/usr/bin/gcc
ENV CXX=/usr/bin/g++
ENV CC=gcc
ENV CXX=g++
# Install uv
RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=/usr/local/bin sh