Skip to content
Snippets Groups Projects
Dockerfile 208 B
Newer Older
FROM ubuntu:18.04
MAINTAINER Laurent Modolo

ENV PIGZ_VERSION=2.4
ENV PACKAGES pigz=${PIGZ_VERSION}*

RUN apt-get update && \
    apt-get install -y --no-install-recommends ${PACKAGES} && \
    apt-get clean