Skip to content
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
2 changes: 1 addition & 1 deletion deployment/ecr/prebid-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ java.net.http,java.security.sasl,jdk.naming.dns,jdk.crypto.ec,jdk.security.auth
COPY docker-build-config.json docker-build-config.json

# Clone and build in single layer to reduce size
RUN git clone --single-branch --branch master --depth 1 https://github.com/prebid/prebid-server-java.git && \
RUN git clone --single-branch --branch master --depth 1 $(jq -r .GIT_REPO ./docker-build-config.json) && \
cd prebid-server-java && \
git fetch origin --tags && \
git checkout $(jq -r .GIT_TAG_VERSION ../docker-build-config.json) && \
Expand Down
4 changes: 2 additions & 2 deletions deployment/ecr/prebid-server/docker-build-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"GIT_REPO": "https://github.com/prebid/prebid-server-java.git",
"GIT_TAG_VERSION": "3.22.0",
"MVN_CLI_OPTIONS": "-Dmaven.test.skip"
}

}