Dockerfile.test
1 FROM ubuntu:22.04
2
3 WORKDIR /
4 RUN apt-get update && apt-get install -y curl jq gzip
5 COPY install.sh .
6 RUN chmod +x install.sh
7 RUN ./install.sh
8 # Check installer added installation to path
9 RUN cat ~/.bashrc | grep ".local/share/apibara/bin"