Skip to content
This repository was archived by the owner on Aug 5, 2024. It is now read-only.

Commit 5a5add3

Browse files
Added bats-core install via git instead of pkg (#150)
1 parent 8a22d87 commit 5a5add3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Dockerfile.FEDORA.HElib

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ RUN yum clean packages
2727
RUN yum -y install hdf5-devel
2828
RUN yum clean packages
2929

30+
# Install bats-core
31+
RUN git clone https://github.com/bats-core/bats-core.git && \
32+
cd bats-core && \
33+
./install.sh /usr/local
34+
3035
# Create dependencies build environment.
3136
RUN mkdir -p /opt/IBM/FHE-distro
3237

Dockerfile.UBUNTU.HElib

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,13 @@ RUN DEBIAN_FRONTEND=noninteractive apt install -y \
4040
m4 \
4141
file \
4242
patchelf \
43-
bats \
4443
vim
4544

45+
# Install bats-core
46+
RUN git clone https://github.com/bats-core/bats-core.git && \
47+
cd bats-core && \
48+
./install.sh /usr/local
49+
4650
# Install GMP dependency for NTL
4751
RUN DEBIAN_FRONTEND=noninteractive apt install -y libgmp-dev
4852

0 commit comments

Comments
 (0)