Skip to content

Commit

Permalink
Update Rust to latest stable version
Browse files Browse the repository at this point in the history
This updates Rust to the latest stable version for both server and bridge.

That's it.

Folks are recommended to upgrade Rust locally as well.
```
rustup update
```
  • Loading branch information
svix-gabriel committed Jul 10, 2023
1 parent 9a2b592 commit c8822f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bridge/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base build
FROM rust:1.69-slim-bullseye AS build
FROM rust:1.70-slim-bullseye AS build

RUN apt-get update && apt-get install -y \
build-essential=12.* \
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base build
FROM rust:1.65-slim-bullseye AS build
FROM rust:1.70-slim-bullseye AS build

RUN apt-get update && apt-get install -y build-essential=12.* checkinstall=1.* zlib1g-dev=1:* pkg-config=0.29.* libssl-dev=* --no-install-recommends

Expand Down

0 comments on commit c8822f8

Please sign in to comment.