oura 2.2.0

The tail of Cardano
Documentation
1
2
3
4
5
6
7
8
9
10
FROM debian:12-slim

RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*

ARG TARGETARCH
COPY bin/oura-Linux-${TARGETARCH} /bin/oura
RUN chmod +x /bin/oura
RUN ln -s /bin/oura /oura

ENTRYPOINT [ "oura" ]