Skip to content

Commit

Permalink
refactor symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
dudizimber committed Dec 29, 2024
1 parent 80452f8 commit 02f457e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Dockerfile.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ RUN yum update -y && \
alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 && \
alternatives --auto python3

# create symlinks
RUN ln -s $(which aclocal) /usr/local/bin/aclocal-1.14 && ln -s $(which automake) /usr/local/bin/automake-1.14

# install rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

Expand All @@ -26,8 +29,4 @@ RUN wget https://download.redis.io/redis-stable.tar.gz && \
cd redis-stable && \
make && \
make install && \
cd ..

# Add link to not found tools
RUN ln -s aclocal /usr/bin/aclocal-1.14 && \
ln -s automake /usr/bin/automake-1.14
cd ..

0 comments on commit 02f457e

Please sign in to comment.