We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c072d commit 90347eeCopy full SHA for 90347ee
.editorconfig
@@ -16,5 +16,9 @@ trim_trailing_whitespace = false
16
indent_style = space
17
indent_size = 2
18
19
+[Dockerfile]
20
+indent_style = space
21
+indent_size = 2
22
+
23
[Makefile]
24
indent_style = tab
Makefile
@@ -1,7 +1,7 @@
1
# Build a container via the command "make build"
2
# By Jason Gegere <jason@htmlgraphic.com>
3
4
-TAG = 1.8.0
+TAG = 1.8.1
5
CONTAINER = apache
6
IMAGE_REPO = htmlgraphic
7
IMAGE_NAME = $(IMAGE_REPO)/$(CONTAINER)
@@ -34,7 +34,7 @@ env:
34
35
build:
36
@make env
37
- docker build \
+ docker build --no-cache \
38
--build-arg VCS_REF=`git rev-parse --short HEAD` \
39
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
40
--rm -t $(IMAGE_NAME):$(TAG) -t $(IMAGE_NAME):latest .
0 commit comments