tools/docker: fix bash path

This commit is contained in:
Corentin Le Molgat
2022-03-04 12:49:31 +01:00
parent 01b5915c45
commit 49cb465744
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ RUN apt-get update -qq \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
CMD ["/bin/bash"]
# Install CMake 3.21.1
RUN wget -q "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \

View File

@@ -11,7 +11,7 @@ RUN apt-get update -qq \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
CMD ["/bin/bash"]
# Install CMake 3.21.1
RUN wget -q "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \

View File

@@ -12,7 +12,7 @@ RUN apt update -qq \
&& apt clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
CMD ["/bin/bash"]
# Swig Install
RUN apt-get update -qq \