V0 #1

Closed
RusticMaple wants to merge 105 commits from v0 into main
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d5b1be28fc - Show all commits
Maple Nebel 2025-11-07 18:37:28 +00:00

View file

@ -1,6 +1,6 @@
FROM rust:alpine AS build-container
RUN apk add --no-cache protobuf-dev git musl-dev lld openssl-dev openssl-libs-static
RUN apk add --no-cache protobuf-dev git musl-dev lld openssl-dev openssl-libs-static ca-certificates
FROM build-container AS builder

View file

@ -21,7 +21,7 @@ pub static FORWARD_EDGE_NODE_HOLDER: Lazy<SocketAddrV4> = Lazy::new(||{
env::var("FORWARD_EDGE_NODE_HOLDER")
.ok()
.and_then(|s| s.parse().ok())
.expect("SECURE_EDGE_NODE_HOLDER not set")
.expect("FORWARD_EDGE_NODE_HOLDER not set")
});