Skip to content

Commit

Permalink
fix: remove dependence on libssl (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
KolbyML authored Feb 1, 2024
1 parent 1cfec7c commit 98984c0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
5 changes: 5 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions glados-audit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ COPY . .

RUN cargo build -p glados-audit --release

FROM ubuntu:20.04
FROM ubuntu:22.04

RUN apt-get update
RUN apt-get install libssl-dev -y

# copy build artifacts from build stage
COPY --from=builder /glados/target/release/glados-audit /usr/bin/
Expand Down
3 changes: 1 addition & 2 deletions glados-cartographer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ COPY . .

RUN cargo build -p glados-cartographer --release

FROM ubuntu:20.04
FROM ubuntu:22.04

RUN apt-get update
RUN apt-get install libssl-dev -y

# copy build artifacts from build stage
COPY --from=builder /glados/target/release/glados-cartographer /usr/bin/
Expand Down
2 changes: 1 addition & 1 deletion glados-monitor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ env_logger = "0.9.3"
futures = "0.3.21"
tracing = "0.1.37"
ethportal-api = "0.2.2"
reqwest = "0.11.6"
reqwest = { version = "0.11.6", default-features = false, features = ["rustls-tls"] }
url = "2.2.2"
3 changes: 1 addition & 2 deletions glados-monitor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ COPY . .

RUN cargo build -p glados-monitor --release

FROM ubuntu:20.04
FROM ubuntu:22.04

RUN apt-get update
RUN apt-get install libssl-dev -y

# copy build artifacts from build stage
COPY --from=builder /glados/target/release/glados-monitor /usr/bin/
Expand Down
3 changes: 1 addition & 2 deletions glados-web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ COPY . .

RUN cargo build -p glados-web --release

FROM ubuntu:20.04
FROM ubuntu:22.04

RUN apt-get update
RUN apt-get install libssl-dev -y

# copy build artifacts from build stage
COPY --from=builder ./glados/glados-web/assets/ /usr/bin/assets/
Expand Down

0 comments on commit 98984c0

Please sign in to comment.