Skip to content

Commit

Permalink
We have a full directory of test docker files use those instead of these
Browse files Browse the repository at this point in the history
at the root. Update docs to accomadate changes
  • Loading branch information
zendern committed Aug 14, 2020
1 parent 872d610 commit 48b7005
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 39 deletions.
11 changes: 0 additions & 11 deletions Dockerfile.alpine

This file was deleted.

11 changes: 0 additions & 11 deletions Dockerfile.fedora

This file was deleted.

13 changes: 0 additions & 13 deletions Dockerfile.ubuntu

This file was deleted.

14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,27 @@ Ubuntu

```
$ GOOS=linux GOARCH=amd64 go build
$ docker build -f Dockerfile.ubuntu . -t test
$ docker build -f docker/dpkg-query-autodetect/Dockerfile . -t test
```

Fedora
Fedora older (yum based)

```
$ GOOS=linux GOARCH=amd64 go build
$ docker build -f Dockerfile.fedora . -t test
$ docker build -f docker/yum-autodetect/Dockerfile . -t test
```

Fedora latest (dnf based)
```
$ GOOS=linux GOARCH=amd64 go build
$ docker build -f docker/dnf-autodetect/Dockerfile . -t test
```

Alpine

```
$ GOOS=linux GOARCH=amd64 go build
$ docker build -f Dockerfile.alpine . -t test
$ docker build -f docker/apk-autodetect/Dockerfile . -t test
```

Depending on the OS, you'll see Ahab run and fail (Ubuntu and Fedora) or succeed (Alpine).
Expand Down

0 comments on commit 48b7005

Please sign in to comment.