Skip to content

Commit

Permalink
Merge pull request #8 from FalkorDB/6-add-rhel-dockerfile
Browse files Browse the repository at this point in the history
add curl
  • Loading branch information
dudizimber authored Dec 29, 2024
2 parents 73e1b9c + 02f457e commit 9e0cc90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,6 +1,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
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
Expand Down
3 changes: 3 additions & 0 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 Down

0 comments on commit 9e0cc90

Please sign in to comment.