We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1e6275 commit 4d923a1Copy full SHA for 4d923a1
appveyor.yml
@@ -14,7 +14,7 @@ install:
14
- ps: docker version
15
16
build_script:
17
-- ps: docker build -t openresty:windows -f windows/Dockerfile .
+- ps: docker build --pull -t openresty:windows -f windows/Dockerfile .
18
19
test_script:
20
- cmd: docker run openresty:windows nginx -vt
docker_build_and_push_flavor.sh
@@ -17,7 +17,7 @@ DOCKER_BUILD_PARAMS="$@"
cat /tmp/docker.pass | docker login -u="$DOCKER_USERNAME" --password-stdin
-docker build -t openresty:$FLAVOR -f $DOCKERFILE_PATH $DOCKER_BUILD_PARAMS .
+docker build --pull -t openresty:$FLAVOR -f $DOCKERFILE_PATH $DOCKER_BUILD_PARAMS .
21
22
if [[ "$TRAVIS_BRANCH" == "master" ]] ; then
23
cat /tmp/docker.pass | docker login -u="$DOCKER_USERNAME" --password-stdin &&
0 commit comments