Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ubuntu version for docker #141

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rpc-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY rpc-server/src ./rpc-server/src
# build for release
RUN cargo build --release --no-default-features --features "$features"

FROM ubuntu:20.04
FROM ubuntu:22.04
RUN apt update && apt install -yy openssl ca-certificates
COPY --from=builder /tmp/target/release/read-rpc-server .
ENTRYPOINT ["./read-rpc-server"]
2 changes: 1 addition & 1 deletion state-indexer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY state-indexer/src ./state-indexer/src
# build for release
RUN cargo build --release --features "$features"

FROM ubuntu:20.04
FROM ubuntu:22.04
RUN apt update && apt install -yy openssl ca-certificates
COPY --from=builder /tmp/target/release/state-indexer .
ENTRYPOINT ["./state-indexer"]
2 changes: 1 addition & 1 deletion tx-indexer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY tx-indexer/src ./tx-indexer/src
# build for release
RUN cargo build --release --features "$features"

FROM ubuntu:20.04
FROM ubuntu:22.04
RUN apt update && apt install -yy openssl ca-certificates libcurl4
COPY --from=builder /tmp/target/release/tx-indexer .
ENTRYPOINT ["./tx-indexer"]
Loading