-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c206ea3
commit ed9cbda
Showing
4 changed files
with
28 additions
and
2,642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from ubuntu:20.04 | ||
|
||
# Set TZ | ||
ENV TZ=Europe/Kyiv | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN apt-get update && apt install -y curl gcc g++ cmake gcc-multilib libpq-dev libssl-dev libsasl2-dev pkg-config | ||
|
||
# Get Rust | ||
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y | ||
ENV PATH="/root/.cargo/bin:${PATH}" | ||
|
||
RUN rustup install 1.60.0 && rustup default 1.60.0 | ||
|
||
RUN sh -c "$(curl -sSfL https://release.solana.com/v1.14.17/install)" | ||
ENV PATH="/root/.local/share/solana/install/active_release/bin:${PATH}" | ||
|
||
WORKDIR /geyser | ||
|
||
COPY . . | ||
|
||
RUN cargo b --release | ||
|
||
CMD ./scripts/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.