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

     1  # Dockerfile to create a go-getter container with smbclient dependency that is used by the get_smb.go tests
     2  FROM golang:1.15
     3  
     4  COPY . /go-getter
     5  WORKDIR /go-getter
     6  
     7  RUN go mod download
     8  RUN apt-get update
     9  RUN DEBIAN_FRONTEND=noninteractive apt-get -yq install smbclient