Skip to content

Commit

Permalink
default formatting for Dockerfile, remove cache on build
Browse files Browse the repository at this point in the history
  • Loading branch information
gegere committed May 28, 2019
1 parent 49c072d commit 90347ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,9 @@ trim_trailing_whitespace = false
indent_style = space
indent_size = 2

[Dockerfile]
indent_style = space
indent_size = 2

[Makefile]
indent_style = tab
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build a container via the command "make build"
# By Jason Gegere <jason@htmlgraphic.com>

TAG = 1.8.0
TAG = 1.8.1
CONTAINER = apache
IMAGE_REPO = htmlgraphic
IMAGE_NAME = $(IMAGE_REPO)/$(CONTAINER)
Expand Down Expand Up @@ -34,7 +34,7 @@ env:

build:
@make env
docker build \
docker build --no-cache \
--build-arg VCS_REF=`git rev-parse --short HEAD` \
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
--rm -t $(IMAGE_NAME):$(TAG) -t $(IMAGE_NAME):latest .
Expand Down

0 comments on commit 90347ee

Please sign in to comment.