Skip to content

Commit

Permalink
🚚 Move dockerfiles to docker folder
Browse files Browse the repository at this point in the history
  • Loading branch information
gleich committed Dec 19, 2020
1 parent a356c18 commit 8377f16
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:
- name: Linting Dockerfile
uses: brpaz/hadolint-action@master
with:
dockerfile: 'Dockerfile'
dockerfile: "docker/Dockerfile"
- name: Linting dev.Dockerfile
uses: brpaz/hadolint-action@master
with:
dockerfile: 'dev.Dockerfile'
dockerfile: "docker/dev.Dockerfile"
- name: Linting dev.lint.Dockerfile
uses: brpaz/hadolint-action@master
with:
dockerfile: 'dev.lint.Dockerfile'
dockerfile: "docker/dev.lint.Dockerfile"
in-docker:
runs-on: ubuntu-latest
steps:
Expand Down
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
##########

build-docker-prod:
docker build -t mattgleich/ctree:latest .
docker build -f docker/Dockerfile -t mattgleich/ctree:latest .
build-docker-dev:
docker build -f dev.Dockerfile -t mattgleich/ctree:test .
docker build -f docker/dev.Dockerfile -t mattgleich/ctree:test .
build-docker-dev-lint:
docker build -f dev.lint.Dockerfile -t mattgleich/ctree:lint .
docker build -f docker/dev.lint.Dockerfile -t mattgleich/ctree:lint .
build-go:
go get -v -t -d ./...
go build -v .
Expand All @@ -26,9 +26,9 @@ lint-gomod:
lint-goreleaser:
goreleaser check
lint-hadolint:
hadolint Dockerfile
hadolint dev.Dockerfile
hadolint dev.lint.Dockerfile
hadolint docker/Dockerfile
hadolint docker/dev.Dockerfile
hadolint docker/dev.lint.Dockerfile
lint-in-docker: build-docker-dev-lint
docker run mattgleich/ctree:lint

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions fsync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ files:
source: https://github.com/Matt-Gleich/go_template/blob/master/.gitignore
- path: LICENSE.md
source: https://github.com/Matt-Gleich/Matt-Gleich/blob/master/standard_documents/licenses/MIT_LICENSE.md
- path: dev.lint.Dockerfile
- path: docker/dev.lint.Dockerfile
source: https://github.com/Matt-Gleich/go_template/blob/master/dev.lint.Dockerfile
- path: dev.Dockerfile
- path: docker/dev.Dockerfile
source: https://github.com/Matt-Gleich/go_template/blob/master/dev.Dockerfile
- path: Dockerfile
- path: docker/Dockerfile
source: https://github.com/Matt-Gleich/go_template/blob/master/Dockerfile
- path: CONTRIBUTING.md
source: https://github.com/Matt-Gleich/go_template/blob/master/CONTRIBUTING.md
Expand Down

0 comments on commit 8377f16

Please sign in to comment.