turingears/compressors

By turingears

Updated over 2 years ago

Image
0

18

:v0
FROM ubuntu:18.04
RUN apt update && apt install -y \
    zip \
    unzip \
    rar \
    unrar \
    p7zip-full \
    p7zip-rar

RUN apt install -y \
    gnupg2 \
    software-properties-common \
    dos2unix \
    openjdk-11-jdk \
    maven && \
    rm -rf /var/lib/apt/lists/* && \
    rm -rf /tmp/*    
:v1
FROM ubuntu:18.04
RUN apt update && apt install -y \
    zip \
    unzip \
    rar \
    unrar \
    p7zip-full \
    p7zip-rar \
    openjdk-11-jre && \
    rm -rf /var/lib/apt/lists/* && \
    rm -rf /tmp/*

Docker Pull Command

docker pull turingears/compressors