mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
This change excludes this module from the platform. GitOrigin-RevId: 3a2b33461fd4f6c56f35f487196a05120b5a5c10
18 lines
438 B
Docker
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
|