Skip to content

Commit

Permalink
chore: Rename Dockerfiles so they are automatically recognized by IDEs (
Browse files Browse the repository at this point in the history
aquasecurity#206)

Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
  • Loading branch information
danielpacak authored Oct 14, 2020
1 parent 6362125 commit ad6b9b9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ changelog:
- '^test'
- '^release'
dockers:
- dockerfile: Dockerfile.starboard
- dockerfile: starboard.Dockerfile
image_templates:
- "docker.io/aquasec/starboard:{{ .Version }}"
binaries:
Expand All @@ -63,7 +63,7 @@ dockers:
- "--label=org.label-schema.build-date={{ .Date }}"
- "--label=org.label-schema.vcs=https://github.com/aquasecurity/starboard"
- "--label=org.label-schema.vcs-ref={{ .FullCommit }}"
- dockerfile: Dockerfile.starboard-operator
- dockerfile: starboard-operator.Dockerfile
image_templates:
- "docker.io/aquasec/starboard-operator:{{ .Version }}"
binaries:
Expand All @@ -77,7 +77,7 @@ dockers:
- "--label=org.label-schema.build-date={{ .Date }}"
- "--label=org.label-schema.vcs=https://github.com/aquasecurity/starboard"
- "--label=org.label-schema.vcs-ref={{ .FullCommit }}"
- dockerfile: Dockerfile.starboard-scanner-aqua
- dockerfile: starboard-scanner-aqua.Dockerfile
image_templates:
- "docker.io/aquasec/starboard-scanner-aqua:{{ .Version }}"
binaries:
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ docker-build: docker-build-starboard-cli docker-build-starboard-operator docker-

## Builds Docker image for Starboard CLI
docker-build-starboard-cli: build-starboard-cli
docker build --no-cache -t $(STARBOARD_CLI_IMAGE) -f Dockerfile.starboard bin
docker build --no-cache -t $(STARBOARD_CLI_IMAGE) -f starboard.Dockerfile bin

## Builds Docker image for Starboard operator
docker-build-starboard-operator: build-starboard-operator
docker build --no-cache -t $(STARBOARD_OPERATOR_IMAGE) -f Dockerfile.starboard-operator bin
docker build --no-cache -t $(STARBOARD_OPERATOR_IMAGE) -f starboard-operator.Dockerfile bin

## Builds Docker image for Aqua scanner
docker-build-starboard-scanner-aqua: build-starboard-scanner-aqua
docker build --no-cache -t $(STARBOARD_SCANNER_AQUA_IMAGE) -f Dockerfile.starboard-scanner-aqua bin
docker build --no-cache -t $(STARBOARD_SCANNER_AQUA_IMAGE) -f starboard-scanner-aqua.Dockerfile bin
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ad6b9b9

Please sign in to comment.