File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,8 @@ jobs:
167167 export DOCKER_BUILDKIT=1
168168 eval $(minikube -p minikube docker-env)
169169 export JAVA_VERSION=${{ matrix.java-version }}
170- docker build --progress=plain --no-cache -f ./Dockerfile -t flink-kubernetes-operator:ci-latest --progress plain --build-arg JAVA_VERSION="${JAVA_VERSION:-11}" .
170+ env
171+ docker build --progress=plain --no-cache -f ./Dockerfile -t flink-kubernetes-operator:ci-latest --progress plain --build-arg JAVA_VERSION="${JAVA_VERSION:-11}" --build-arg MAVEN_HOME="${HOME}/.m2" .
171172 docker images
172173 - name : Start the operator
173174 run : |
Original file line number Diff line number Diff line change 1919ARG JAVA_VERSION=11
2020FROM maven:3.8.8-eclipse-temurin-${JAVA_VERSION} AS build
2121ARG SKIP_TESTS=true
22- ARG MAVEN_HOME=${HOME:~ }/.m2
22+ ARG MAVEN_HOME=${HOME}/.m2
2323
2424WORKDIR /app
2525
You can’t perform that action at this time.
0 commit comments