kompose/pkg/transformer
Suraj Narwade ec897ef50f Added dockerfile key support
Fixes #486
This commit will add `dockerfilepath` key under Dockerstratergy in buildconfig.
dockerfilepath allow us to use dockerfiles which are named different than `Dockerfile` which are placed in context directory.

for example, for a docker-compose file:

```
version: "2"
services:
    foo:
        build:
            context: "./build"
            dockerfile: "Dockerfile-alternate"
        command: "sleep 3600"
```
Resulting buildconfig will be:

```
apiVersion: v1
kind: BuildConfig
...
...
  strategy:
    dockerStrategy:
      dockerfilePath: Dockerfile-alternate
    type: Docker
...
...
```
2017-03-22 17:49:26 +05:30
..
kubernetes Added support for tmpfs 2017-03-16 22:14:39 +05:30
openshift Added dockerfile key support 2017-03-22 17:49:26 +05:30
transformer.go return errors instead of logrus.Fatal calls 2017-03-15 13:30:21 +05:30
utils_test.go Ignores :z or :Z when passed in as a volume string 2017-01-20 15:20:41 -05:00
utils.go return errors instead of logrus.Fatal calls 2017-03-15 13:30:21 +05:30