File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
testcontainers-advanced-imagebuilder-demo Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 33ARG JAVA_VERSION=21
44FROM eclipse-temurin:$JAVA_VERSION-jdk-alpine AS build-env
55
6- RUN apk add --no-cache git bash
6+ RUN apk add --no-cache bash
77
88WORKDIR /build
99
@@ -21,13 +21,6 @@ RUN ${MAVEN_GO_OFFLINE_COMMAND}
2121# Copying all other files
2222COPY . ./
2323
24- # A valid Git repo is required for the build
25- RUN git config --global user.email
"[email protected] " \
26- && git config --global user.name "Dynamic Build" \
27- && git init --initial-branch=dynamically-built-tcst \
28- && git add . \
29- && git commit -m "Init commit"
30-
3124ARG MAVEN_BUILD_COMMAND='./mvnw -B clean package -pl "testcontainers-advanced-imagebuilder-dummy-app" -am -T2C -Dmaven.test.skip'
3225RUN echo "Executing '$MAVEN_BUILD_COMMAND'"
3326RUN ${MAVEN_BUILD_COMMAND}
You can’t perform that action at this time.
0 commit comments