Set PYTHONDONTWRITEBYTECODE in dockerfiles.

This commit is contained in:
Giorgos Logiotatidis 2015-10-07 15:33:02 +03:00
Родитель 634ac47808
Коммит 182688aaa2
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -17,6 +17,7 @@ RUN pip install -r requirements/pip.txt
# Install app
COPY ./bin/peep.py /app/bin/peep.py
ENV PYTHONDONTWRITEBYTECODE=1
RUN ./bin/peep.py install --no-cache-dir -r requirements/dev.txt
RUN ./bin/peep.py install --no-cache-dir -r requirements/prod.txt
RUN ./bin/peep.py install --no-cache-dir -r requirements/docker.txt