Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tikv-jemallocator = "0.6.0"
[package]
name = "synapse_compress_state"
description = "A tool to compress some state in a Synapse instance's database"
rust-version = "1.78"
rust-version = "1.80.0"
authors = ["Erik Johnston"]
version.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# second stage only copies the binaries for the target architecture.
# We leverage Zig and cargo-zigbuild for providing a cross-compilation-capable C compiler and linker.

ARG RUSTC_VERSION=1.78.0
ARG RUSTC_VERSION=1.80.0
ARG ZIG_VERSION=0.14.1
ARG CARGO_ZIGBUILD_VERSION=0.20.1

Expand Down Expand Up @@ -46,7 +46,7 @@
target/aarch64-unknown-linux-musl/release/synapse_auto_compressor \
/opt/binaries/arm64

FROM --platform=${TARGETPLATFORM} docker.io/alpine

Check warning on line 49 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Setting platform to predefined $TARGETPLATFORM in FROM is redundant as this is the default behavior

RedundantTargetPlatform: Setting platform to predefined ${TARGETPLATFORM} in FROM is redundant as this is the default behavior More info: https://docs.docker.com/go/dockerfile/rule/redundant-target-platform/

ARG TARGETARCH

Expand Down
Loading