Removed `PATH` variable definition in Dockerfile

As @ibnesayeed mentionned, some environment variables are actually defined even in Scratch Docker images. `PATH` contains `/bin` so there is no need to overwrite it.
pull/36/head
Quentin McGaw 5 years ago
parent 80fdf3142b
commit 25e877539d

@ -45,6 +45,5 @@ LABEL \
org.opencontainers.image.title="lazydocker" \
org.opencontainers.image.description="The lazier way to manage everything docker"
ENTRYPOINT [ "/bin/lazydocker" ]
ENV PATH=/bin
COPY --from=docker-builder /go/src/github.com/docker/cli/build/docker /bin/docker
COPY --from=builder /tmp/gobuild/lazydocker /bin/lazydocker
Loading…
Cancel
Save