Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

#161 Remove pycache directories files on build #209

Merged
merged 1 commit into from Nov 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions compose/base/Dockerfile-dev
Expand Up @@ -8,6 +8,9 @@ RUN python3.6 get-pip.py
RUN rm /usr/bin/python
RUN ln -s /usr/bin/python3.6 /usr/bin/python

# Removing existing __pycache__ files
RUN find . -type d -name __pycache__ -exec rm -r {} \+

# Interface
COPY ./interface/requirements /requirements/interface
RUN pip install -U pip
Expand Down