diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile index 5662ca903..6d457488a 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile @@ -29,7 +29,7 @@ EXPOSE 7999 # Installing ################################################################## RUN apt update && \ - apt install -y git/bullseye-backports + apt install -y --allow-downgrades git/bullseye-backports RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \ && curl -L ${DOWNLOAD_URL} | tar -xz --strip-components=1 -C "${BITBUCKET_INSTALL_DIR}" \ diff --git a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 index 9775c6d29..932e73c25 100644 --- a/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/8/8.7.0/Dockerfile.jdk11 @@ -29,7 +29,7 @@ EXPOSE 7999 # Installing ################################################################## RUN apt update && \ - apt install -y git/bullseye-backports + apt install -y --allow-downgrades git/bullseye-backports RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \ && curl -L ${DOWNLOAD_URL} | tar -xz --strip-components=1 -C "${BITBUCKET_INSTALL_DIR}" \ diff --git a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile index 5fa0c40e3..a3763a76e 100644 --- a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile +++ b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile @@ -29,7 +29,7 @@ EXPOSE 7999 # Installing ################################################################## RUN apt update && \ - apt install -y git/bullseye-backports + apt install --allow-downgrades -y git/bullseye-backports RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \ && curl -L ${DOWNLOAD_URL} | tar -xz --strip-components=1 -C "${BITBUCKET_INSTALL_DIR}" \ diff --git a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk11 b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk11 index 5f92da618..ff9525814 100644 --- a/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk11 +++ b/linux/ecosystem/atlassian/bitbucket/latest/Dockerfile.jdk11 @@ -29,7 +29,7 @@ EXPOSE 7999 # Installing ################################################################## RUN apt update && \ - apt install -y git/bullseye-backports + apt install --allow-downgrades -y git/bullseye-backports RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \ && curl -L ${DOWNLOAD_URL} | tar -xz --strip-components=1 -C "${BITBUCKET_INSTALL_DIR}" \