jet-admin / jet-bridge

Avoid cache directory with pip install --no-cache-dir <package> DOK-P1003
Performance
Minor
6 months agoa year old
Avoid use of cache directory with pip. Use pip install --no-cache-dir <package>
 2
 3COPY packages /packages
 4RUN pip install -e /packages/jet_bridge_base
 5RUN pip install -e /packages/jet_bridge 6
 7RUN mkdir /jet
 8VOLUME /jet
Avoid use of cache directory with pip. Use pip install --no-cache-dir <package>
 1FROM jetadmin/jet-bridge-base:1.3.1
 2
 3COPY packages /packages
 4RUN pip install -e /packages/jet_bridge_base 5RUN pip install -e /packages/jet_bridge
 6
 7RUN mkdir /jet