Skip to content

Commit

Permalink
update dockerfile rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
mendess committed Oct 18, 2024
1 parent ff117c3 commit cd20da5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/daphne-server/docker/example-service.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2024 Cloudflare, Inc. All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause

FROM rust:1.80.1-bookworm AS builder
FROM rust:1.82-bookworm AS builder

RUN apt update && \
apt install -y \
Expand Down
2 changes: 1 addition & 1 deletion crates/daphne-worker-test/docker/runtests.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2024 Cloudflare, Inc. All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause

FROM rust:1.80.1-bookworm
FROM rust:1.82-bookworm

WORKDIR /tmp/dap_test

Expand Down
2 changes: 1 addition & 1 deletion crates/daphne-worker-test/docker/storage-proxy.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2024 Cloudflare, Inc. All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause

FROM rust:1.80.1-bookworm AS builder
FROM rust:1.82-bookworm AS builder
RUN apt update && apt install -y capnproto clang cmake

# Pre-install worker-build and Rust's wasm32 target to speed up our custom build command
Expand Down

0 comments on commit cd20da5

Please sign in to comment.