mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e0ef11a4c2
This patch creates interfaces in builder/ for building Docker images. It is a first step in a series of patches to remove the daemon dependency on builder and later allow a client-side Dockerfile builder as well as potential builder plugins. It is needed because we cannot remove the /build API endpoint, so we need to keep the server-side Dockerfile builder, but we also want to reuse the same Dockerfile parser and evaluator for both server-side and client-side. builder/dockerfile/ and api/server/builder.go contain implementations of those interfaces as a refactoring of the current code. Signed-off-by: Tibor Vass <tibor@docker.com>
18 lines
381 B
Go
18 lines
381 B
Go
// +build windows
|
|
|
|
package ioutils
|
|
|
|
import (
|
|
"io/ioutil"
|
|
|
|
"github.com/docker/docker/pkg/longpath"
|
|
)
|
|
|
|
// TempDir is the equivalent of ioutil.TempDir, except that the result is in Windows longpath format.
|
|
func TempDir(dir, prefix string) (string, error) {
|
|
tempDir, err := ioutil.TempDir(dir, prefix)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return longpath.AddPrefix(tempDir), nil
|
|
}
|