jet-admin / jet-bridge

Found consecutive RUN commands DOK-W1001
Anti-pattern
Minor
6 months agoa year old
Multiple consecutive RUN instructions. Consider consolidation.
13COPY docker/entrypoint.sh /
14COPY docker/network-entrypoint.sh /
15RUN chmod +x /entrypoint.sh
16RUN chmod +x /network-entrypoint.sh17ENTRYPOINT ["/entrypoint.sh"]
Multiple consecutive RUN instructions. Consider consolidation.
 4RUN pip install -e /packages/jet_bridge_base
 5RUN pip install -e /packages/jet_bridge
 6
 7RUN mkdir /jet 8VOLUME /jet
 9WORKDIR /jet
10
Multiple consecutive RUN instructions. Consider consolidation.
 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