pyth-lazer-agent 0.7.0

Pyth Lazer Agent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM rust:slim-bookworm AS builder

RUN apt update && apt install -y curl libssl-dev pkg-config build-essential && apt clean all

ADD apps/pyth-lazer-agent /pyth-lazer-agent
WORKDIR /pyth-lazer-agent

RUN cargo build --release

FROM debian:12-slim

RUN apt update && apt install -y libssl-dev ca-certificates && apt clean all

COPY --from=builder /pyth-lazer-agent/target/release/pyth-lazer-agent /pyth-lazer-agent/
COPY --from=builder /pyth-lazer-agent/config/* /pyth-lazer-agent/config/

ENTRYPOINT ["/pyth-lazer-agent/pyth-lazer-agent"]