Skip to content

Commit

Permalink
Dockerfile: Clean up CMake setup file
Browse files Browse the repository at this point in the history
Delete CMake setup SFX after running it.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed Oct 22, 2024
1 parent 1026a02 commit 80f9c19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ RUN apt-get install -y --no-install-recommends makeself p7zip-full tree curl
# Install CMake
RUN wget https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-${HOSTTYPE}.sh && \
chmod +x cmake-${CMAKE_VERSION}-linux-${HOSTTYPE}.sh && \
./cmake-${CMAKE_VERSION}-linux-${HOSTTYPE}.sh --skip-license --prefix=/usr/local
./cmake-${CMAKE_VERSION}-linux-${HOSTTYPE}.sh --skip-license --prefix=/usr/local && \
rm cmake-${CMAKE_VERSION}-linux-${HOSTTYPE}.sh

# Install python packages to allow upload to aws S3
RUN pip3 install awscli
Expand Down

0 comments on commit 80f9c19

Please sign in to comment.