Skip to content

Commit

Permalink
update to rust 1.85 to support 2024 edition
Browse files Browse the repository at this point in the history
  • Loading branch information
senekor committed Feb 20, 2025
1 parent d530a3a commit 0dc5419
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.80-slim AS base
FROM rust:1.85-slim AS base

WORKDIR /analyzer

Expand All @@ -7,7 +7,7 @@ COPY . .
RUN cargo build --release

# cargo-local-registry stuff is copied from the test runner
FROM rust:1.80 AS build-cargo-local-registry
FROM rust:1.85 AS build-cargo-local-registry

# install cargo-local-registry
RUN cargo install --locked cargo-local-registry
Expand All @@ -16,7 +16,7 @@ WORKDIR /local-registry
COPY local-registry/* ./
RUN cargo generate-lockfile && cargo local-registry --sync Cargo.lock .

FROM rust:1.80-slim
FROM rust:1.85-slim

WORKDIR /opt/analyzer

Expand Down

0 comments on commit 0dc5419

Please sign in to comment.