We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b6d46 commit 2e62a30Copy full SHA for 2e62a30
connectors/ada-usd-connector/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM rust:1.45.2 as builder
2
+WORKDIR /usr/src/
3
+RUN git clone https://github.com/ergoplatform/oracle-core.git
4
+WORKDIR /usr/src/oracle-core/connectors/ada-usd-connector
5
+RUN cargo build --release
6
+RUN cargo install --path .
7
+
8
+FROM rust:1.45.2-slim
9
+COPY --from=builder /usr/local/cargo/bin/ada-usd-connector /usr/local/bin/ada-usd-connector
10
+CMD ["ada-usd-connector"]
0 commit comments