Renamed some docker files to Dockerfile

This makes it simpler to manage by using the default name. It also helps
my editor to recognise the file and highlight it properly.
This commit is contained in:
2018-03-23 12:42:56 +01:00
parent 1fca473257
commit 7cb4b37ae2
6 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
FROM armadillica/pillar_py:3.6
LABEL maintainer Sybren A. Stüvel <sybren@blender.studio>
RUN apt-get update && 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