fix(Dockerfile): Add cmake to allow actually mounting bucket

This commit is contained in:
Tanguy Herbron 2023-08-07 18:43:00 +02:00
parent 1a1d760e69
commit 5c869388a1

View File

@ -24,7 +24,9 @@ FROM debian:12.1 as release
COPY --from=builder /mountpoint-s3/target/release/mount-s3 /mount-s3
RUN apt update && \
apt install -y libfuse-dev && \
apt install -y \
cmake \
libfuse-dev && \
apt clean all
CMD [ "/mount-s3" ]