Skip to content

Commit

Permalink
Merge pull request #125 from vrothberg/fork-dockerfile
Browse files Browse the repository at this point in the history
Fork dockerfile
  • Loading branch information
openshift-merge-robot authored Mar 8, 2019
2 parents b2a2e8b + 3a881e6 commit 705fe92
Show file tree
Hide file tree
Showing 749 changed files with 77,366 additions and 18,237 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ go:
install:

script:
- go build ./...
- go test ./...
- make build
- make test

notifications:
irc: "chat.freenode.net#openshift-dev"
Expand Down
190 changes: 0 additions & 190 deletions Gopkg.lock

This file was deleted.

42 changes: 0 additions & 42 deletions Gopkg.toml

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build:
.PHONY: build

test:
go test ./...
go test $(go list ./... | grep -v /vendor/)
.PHONY: test

test-conformance:
Expand Down
4 changes: 2 additions & 2 deletions builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (

docker "github.com/fsouza/go-dockerclient"

"github.com/docker/docker/builder/dockerfile/command"
"github.com/docker/docker/builder/dockerfile/parser"
"github.com/openshift/imagebuilder/dockerfile/command"
"github.com/openshift/imagebuilder/dockerfile/parser"
)

// Copy defines a copy operation required on the container.
Expand Down
2 changes: 1 addition & 1 deletion dockerclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"strings"

dockertypes "github.com/docker/docker/api/types"
"github.com/docker/docker/builder/dockerfile/parser"
"github.com/openshift/imagebuilder/dockerfile/parser"
docker "github.com/fsouza/go-dockerclient"
"github.com/golang/glog"

Expand Down
4 changes: 2 additions & 2 deletions dockerclient/conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"testing"
"time"

"github.com/docker/docker/builder/dockerfile/command"
"github.com/docker/docker/builder/dockerfile/parser"
"github.com/openshift/imagebuilder/dockerfile/command"
"github.com/openshift/imagebuilder/dockerfile/parser"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/fileutils"
docker "github.com/fsouza/go-dockerclient"
Expand Down
26 changes: 26 additions & 0 deletions dockerfile/NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Source files in this directory and all sub-directories have been
copied from github.com/docker/docker/builder/dockerfile and are
Licensed under the Apache License Version 2.0.

Note that the fork of github.com/docker/docker used commit
b68221c37ee597950364788204546f9c9d0e46a1.

Docker
Copyright 2012-2017 Docker, Inc.

This product includes software developed at Docker, Inc. (https://www.docker.com).

This product contains software (https://github.com/kr/pty) developed
by Keith Rarick, licensed under the MIT License.

The following is courtesy of our legal counsel:


Use and transfer of Docker may be subject to certain restrictions by the
United States and other governments.
It is your responsibility to ensure that your use and/or transfer does not
violate applicable laws.

For more information, please see https://www.bis.doc.gov

See also https://www.apache.org/dev/crypto.html and/or seek legal counsel.
Loading

0 comments on commit 705fe92

Please sign in to comment.