- Ubuntu 17.10 → 18.04. - Python 3.6.3 → 3.6.6. - Use `DEBIAN_FRONTEND=noninteractive` to prevent prompts during installation. - Install `tzdata` in the base image as it's required by subimages. - Correctly set maintainer in Dockerfile.
21 lines
459 B
Docker
21 lines
459 B
Docker
FROM armadillica/pillar_py:3.6
|
|
LABEL maintainer="Sybren A. Stüvel <sybren@blender.studio>"
|
|
|
|
RUN set -ex; \
|
|
apt-get update; \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -qy \
|
|
git \
|
|
build-essential \
|
|
checkinstall \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
libjpeg-dev \
|
|
zlib1g-dev
|
|
|
|
ENV WHEELHOUSE=/data/wheelhouse
|
|
ENV PIP_WHEEL_DIR=/data/wheelhouse
|
|
ENV PIP_FIND_LINKS=/data/wheelhouse
|
|
RUN mkdir -p $WHEELHOUSE
|
|
|
|
VOLUME /data/wheelhouse
|