Skip to content

Commit

Permalink
Install fuse3 in lading container (#1080)
Browse files Browse the repository at this point in the history
### What does this PR do?

If the logrotate_fs generator is in use we must have fusermount3 in
the container. This commit adds this command to the container.
  • Loading branch information
blt authored Oct 31, 2024
1 parent 9969707 commit dae428e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY . /app
RUN cargo build --release --locked --bin lading

FROM docker.io/debian:bullseye-20240701-slim
RUN apt-get update && apt-get install -y libfuse3-dev=3.10.3-2 && rm -rf /var/lib/apt/lists/*
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

# smoke test
Expand Down

0 comments on commit dae428e

Please sign in to comment.