Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update maven docker tag to v3.8.6 #83

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deployable/java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
# limitations under the License.

# compile local java-logging library
FROM maven:3.8.4 AS lib-env
FROM maven:3.8.6 AS lib-env
WORKDIR /app
COPY _library ./
RUN mvn verify --fail-never
RUN mvn -Dmaven.test.skip=true package

# Compile the deployable code.
FROM maven:3.8.4 AS build-env
FROM maven:3.8.6 AS build-env
WORKDIR /app
COPY pom.xml /app/pom.xml
# copy over compiled library
Expand Down
4 changes: 2 additions & 2 deletions deployable/java/Dockerfile.cloudfunctions
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# compile local java-logging library
FROM maven:3.8.4 AS lib-env
FROM maven:3.8.6 AS lib-env
WORKDIR /app
COPY _library ./
RUN mvn verify
Expand All @@ -23,7 +23,7 @@ RUN cp `ls google-cloud-logging/target/*.jar | grep -v "test" | sort -V | tail -
RUN cp `ls proto-google-cloud-logging-v2/target/*.jar | grep -v "test" | sort -V | tail -n1` /app/proto-java-logging.jar

# Compile the deployable code.
FROM maven:3.8.4 AS build-env
FROM maven:3.8.6 AS build-env
WORKDIR /app
COPY functions/pom.xml /app/pom.xml
# copy over compiled library
Expand Down