Skip to content

Commit

Permalink
remove more platform
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <brian.troutwine@datadoghq.com>
  • Loading branch information
blt committed Nov 7, 2024
1 parent ef91a48 commit 5054e5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Update the rust version in-sync with the version in rust-toolchain.toml
FROM --platform=$BUILDPLATFORM docker.io/rust:1.81.0-bullseye AS builder
FROM docker.io/rust:1.81.0-bullseye AS builder

RUN apt-get update && apt-get install -y \
protobuf-compiler fuse3 libfuse3-dev \
Expand All @@ -9,7 +9,7 @@ WORKDIR /app
COPY . /app
RUN cargo build --release --locked --bin lading

FROM --platform=$BUILDPLATFORM docker.io/debian:bullseye-20240701-slim
FROM docker.io/debian:bullseye-20240701-slim
RUN apt-get update && apt-get install -y libfuse3-dev=3.10.3-2 fuse3=3.10.3-2 && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/target/release/lading /usr/bin/lading

Expand Down

0 comments on commit 5054e5c

Please sign in to comment.