From 8536bb34ee0565f4238bb70d5146226a14734416 Mon Sep 17 00:00:00 2001 From: Dudi Zimberknopf Date: Sun, 29 Dec 2024 14:10:50 +0200 Subject: [PATCH] remove symlinks --- Dockerfile.debian | 3 --- Dockerfile.rhel | 3 --- Dockerfile.ubuntu | 3 --- 3 files changed, 9 deletions(-) diff --git a/Dockerfile.debian b/Dockerfile.debian index 76ae874..45b29ff 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -2,9 +2,6 @@ FROM debian:bookworm-slim RUN apt-get update -y && apt-get install -y build-essential cmake m4 automake peg libtool autoconf python3 python3-pip git peg lcov openssl libssl-dev curl -# 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 diff --git a/Dockerfile.rhel b/Dockerfile.rhel index 87e4f84..a554840 100644 --- a/Dockerfile.rhel +++ b/Dockerfile.rhel @@ -6,9 +6,6 @@ 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 diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 91c0d15..6fde9d6 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -2,9 +2,6 @@ FROM ubuntu:22.04 as builder RUN apt-get update -y && apt-get install -y curl build-essential cmake m4 automake peg libtool autoconf python3 python3-pip git peg lcov openssl libssl-dev -# 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