Files
openide/tools/reproducibleBuilds.diff/Dockerfile
Daniil Ovchinnikov db3d8b7c58 rename intellij.platform.reproducibleBuilds.diffTool -> intellij.tools.reproducibleBuilds.diff
This change excludes this module from the platform.

GitOrigin-RevId: 3a2b33461fd4f6c56f35f487196a05120b5a5c10
2024-06-24 15:32:55 +00:00

18 lines
438 B
Docker

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