github.com/dmaizel/tests@v0.0.0-20210728163746-cae6a2d9cee8/conformance/posixfs/Dockerfile (about) 1 # Copyright (c) 2018 Intel Corporation 2 # 3 # SPDX-License-Identifier: Apache-2.0 4 5 # Usage: FROM [image name] 6 FROM debian 7 8 # Version of the Dockerfile 9 LABEL DOCKERFILE_VERSION="1.0" 10 11 RUN apt-get update && \ 12 apt-get -y install autoconf git bc libacl1-dev libacl1 acl gcc make perl g++ perl-modules && \ 13 git clone https://github.com/pjd/pjdfstest.git && \ 14 cd pjdfstest && \ 15 autoreconf -ifs && \ 16 ./configure && \ 17 make 18 19 CMD ["/bin/bash"]