Dockerized LLVM (#1914)

Optionally build with dockererized custom llvm
This commit is contained in:
jackcmay
2018-11-28 14:41:53 -08:00
committed by GitHub
parent 55993ef0ce
commit 0c091c1b24
14 changed files with 137 additions and 8 deletions

View File

@ -0,0 +1,13 @@
FROM debian:stretch
# JSON RPC port
EXPOSE 8899/tcp
# Install libssl
RUN apt update && \
apt-get install -y libssl-dev && \
rm -rf /var/lib/apt/lists/*
COPY usr/bin /usr/bin/
ENTRYPOINT [ "/usr/bin/solana-entrypoint.sh" ]
CMD [""]