ci: clean debian docker

This commit is contained in:
Corentin Le Molgat
2023-07-07 14:20:48 +02:00
parent 1b8133cc3a
commit dcda6523d0

View File

@@ -9,14 +9,6 @@ RUN apt-get update -qq \
lsb-release \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Install CMake
ARG VERSION=3.25
ARG VERSION_FULL=3.25.2
RUN wget -q "https://cmake.org/files/v${VERSION}/cmake-${VERSION_FULL}-linux-x86_64.sh" \
&& chmod a+x cmake-${VERSION_FULL}-linux-x86_64.sh \
&& ./cmake-${VERSION_FULL}-linux-x86_64.sh --prefix=/usr/local/ --skip-license \
&& rm cmake-${VERSION_FULL}-linux-x86_64.sh
CMD [ "/bin/bash" ]
FROM base AS swig