Skip to content
Snippets Groups Projects
Select Git revision
  • 974cea2d9bbba9b984694f4ce107f3255f076b08
  • main default
2 results

xml_utils.py

Blame
  • Dockerfile 389 B
    FROM golang:1.12.9
    
    RUN apt-get update && apt-get install -y --no-install-recommends \
                    openssh-client \
                    rsync \
                    fuse \
                    sshfs \
            && rm -rf /var/lib/apt/lists/*
    
    RUN go get  golang.org/x/lint/golint \
                golang.org/x/tools/cover
    
    ENV USER root
    WORKDIR /go/src/github.com/docker/machine
    
    COPY . ./
    RUN mkdir bin