Skip to content

Commit c5131ba

Browse files
committed
Install fuse3 in lading container
If the logrotate_fs generator is in use we must have fusermount3 in the container. This commit adds this command to the container. Signed-off-by: Brian L. Troutwine <[email protected]>
1 parent 9969707 commit c5131ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY . /app
1010
RUN cargo build --release --locked --bin lading
1111

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

1616
# smoke test

0 commit comments

Comments
 (0)