github.com/hashicorp/go-getter/v2@v2.2.2/Dockerfile-smbserver (about)

     1  # Dockerfile to create a smb server that is used by the get_smb.go tests
     2  FROM dperson/samba
     3  
     4  # Create shared folders
     5  RUN mkdir -p /public && mkdir -p /private
     6  
     7  # Create shared files and directories under the shared folders (data and mnt)
     8  RUN echo 'Hello' > /public/file.txt && mkdir -p /public/subdir  && echo 'Hello' > /public/subdir/file.txt
     9  RUN echo 'Hello' > /private/file.txt && mkdir -p /private/subdir  && echo 'Hello' > /private/subdir/file.txt