docs/pkg/archive
Ahmet Alp Balkan 5ecab9e831 Support windows style dockerfile paths for build cmd
Currently TestBuildRenamedDockerfile fails since passing
custom dockerfile paths like:

    docker build -f dir/file .

fails on windows because those are unix paths. Instead, on
windows accept windows style paths like:

    docker build -f dir\file .

and convert them to unix style paths using the helper we
have in `pkg/archive` so that daemon can correctly locate
the path in the context.

Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
2015-02-24 20:23:53 -08:00
..
testdata
MAINTAINERS
README.md
archive.go Support windows style dockerfile paths for build cmd 2015-02-24 20:23:53 -08:00
archive_test.go
archive_unix.go Support windows style dockerfile paths for build cmd 2015-02-24 20:23:53 -08:00
archive_unix_test.go Support windows style dockerfile paths for build cmd 2015-02-24 20:23:53 -08:00
archive_windows.go Support windows style dockerfile paths for build cmd 2015-02-24 20:23:53 -08:00
archive_windows_test.go Support windows style dockerfile paths for build cmd 2015-02-24 20:23:53 -08:00
changes.go pkg/archive: sort files 2015-02-06 18:13:57 +01:00
changes_posix_test.go pkg/archive: test that confirms hardlink ordering 2015-02-06 18:14:38 +01:00
changes_test.go pkg/archive: sort files 2015-02-06 18:13:57 +01:00
diff.go Fixed relative filepath check 2015-02-16 20:38:52 -06:00
diff_test.go
example_changes.go
time_linux.go
time_unsupported.go
utils_test.go
wrap.go

README.md

This code provides helper functions for dealing with archive files.