add gcc-13 as dependency in dev environment and add aliases

This commit is contained in:
falsycat 2023-07-23 21:12:09 +09:00
parent 0a97f0e3ae
commit f259738602

View File

@ -3,10 +3,15 @@ FROM debian:unstable-slim
RUN apt update && apt install -y --no-install-recommends \
ca-certificates \
cmake \
gcc-13 \
gdb \
git \
g++-13 \
make \
&& apt -y clean && rm -rf /var/lib/apt/lists/*
RUN \
ln -s /usr/bin/gcc-13 /usr/bin/gcc && \
ln -s /usr/bin/g++-13 /usr/bin/g++
WORKDIR /repo