Skip to content

Commit

Permalink
Merge pull request #5 from FalkorDB/symlinks
Browse files Browse the repository at this point in the history
added symbolic links
  • Loading branch information
dudizimber authored Dec 25, 2024
2 parents 092a936 + ee91d24 commit e0d9b2a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ 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

# 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

# add rust to path
ENV PATH="/root/.cargo/bin:${PATH}"
ENV PATH="/root/.cargo/bin:${PATH}"
3 changes: 3 additions & 0 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ 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

Expand Down

0 comments on commit e0d9b2a

Please sign in to comment.