photon-indexer 0.50.0

Solana indexer for general compression
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1.81-slim-bullseye
RUN apt update && apt install -y build-essential pkg-config libssl-dev

# Copy the project files
COPY . .

# Build the project
RUN cargo build --release

RUN mv target/release/photon . 
RUN mv target/release/photon-snapshotter . 
RUN mv target/release/photon-migration . 

RUN rm -rf target