From 354eade715c66fa179b05b7e8bb2cd00c4f61062 Mon Sep 17 00:00:00 2001 From: "Dmitriy.Panov" Date: Tue, 3 Jun 2025 14:47:12 +0200 Subject: [PATCH] IJPL-190188 a custom Dockerfile for a build reproducibility test is excessive https://github.com/JetBrains/intellij-community/blob/master/Dockerfile should be used instead GitOrigin-RevId: 35235073ecafef8b5eccd2fedf74277bd884b8a9 --- tools/reproducibleBuilds.diff/Dockerfile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 tools/reproducibleBuilds.diff/Dockerfile diff --git a/tools/reproducibleBuilds.diff/Dockerfile b/tools/reproducibleBuilds.diff/Dockerfile deleted file mode 100644 index e1b4ddfefb17..000000000000 --- a/tools/reproducibleBuilds.diff/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM ubuntu:20.04 -ENV LANG=C.UTF-8 -ENV SHELL=/bin/bash -ENV JAVA_HOME=/usr/lib/jvm/java-17-amazon-corretto -COPY --from=amazoncorretto:17 $JAVA_HOME $JAVA_HOME -ENV PATH=$JAVA_HOME/bin:$PATH -RUN apt-get -qq update && apt-get install -y \ - git \ - tar \ - p7zip-full \ - squashfs-tools \ - && rm -rf /var/lib/apt/lists/* -RUN javap -version && \ - git --version && \ - tar --version && \ - which 7z && \ - which unsquashfs