Skip to content

Commit 90347ee

Browse files
committed
default formatting for Dockerfile, remove cache on build
1 parent 49c072d commit 90347ee

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,9 @@ trim_trailing_whitespace = false
1616
indent_style = space
1717
indent_size = 2
1818

19+
[Dockerfile]
20+
indent_style = space
21+
indent_size = 2
22+
1923
[Makefile]
2024
indent_style = tab

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build a container via the command "make build"
22
# By Jason Gegere <jason@htmlgraphic.com>
33

4-
TAG = 1.8.0
4+
TAG = 1.8.1
55
CONTAINER = apache
66
IMAGE_REPO = htmlgraphic
77
IMAGE_NAME = $(IMAGE_REPO)/$(CONTAINER)
@@ -34,7 +34,7 @@ env:
3434

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

0 commit comments

Comments
 (0)