added Dockerfile

This commit is contained in:
Markus Ressel 2022-11-15 23:27:21 +01:00
parent 0c74cfa468
commit bebe233371

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM phusion/baseimage:jammy-1.0.1
MAINTAINER markusressel
RUN apt-get update \
&& apt-get -y install bc \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
COPY zfs-inplace-rebalancing.sh ./
ENTRYPOINT ["./zfs-inplace-rebalancing.sh"]