Skip to content

Commit 28347d8

Browse files
EstrellaXDclaude
andcommitted
fix: use latest Rust image, deps require rustc 1.88+
cookie_store, home, and time crates all require rustc 1.88.0+. Use rust:slim (latest) instead of pinning to an outdated version. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2b7b242 commit 28347d8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN npm ci
66
COPY frontend/ .
77
RUN npm run build
88

9-
FROM rust:1.85-slim AS backend
9+
FROM rust:slim AS backend
1010

1111
WORKDIR /build
1212

backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "server-monitor"
33
version = "1.2.0"
44
edition = "2021"
5-
rust-version = "1.75"
5+
rust-version = "1.88"
66

77
[[bin]]
88
name = "server-monitor"

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.85-slim AS builder
1+
FROM rust:slim AS builder
22

33
WORKDIR /build
44

0 commit comments

Comments
 (0)