Skip to content

Commit

Permalink
remove extra CMD from containers (#390)
Browse files Browse the repository at this point in the history
* add entrypoint to all containers

* remove -e for pip installs

* add keyring to fix bad key nvidia issue

* trying to move env call to see if it helps fix the install of distributed embeddings after sok install

* fix extra CVE

* fixing CI routes

* fix merlin merge

* remove extra CMD that replaces previous entrypoint

Co-authored-by: Karl Higley <kmhigley@gmail.com>
  • Loading branch information
jperez999 and karlhigley authored Jul 7, 2022
1 parent e1b9f04 commit 88c3b90
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions docker/dockerfile.ctr
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,3 @@ RUN rm /usr/local/cuda/lib64/stubs/libcuda.so.1
RUN rm -rf /repos
RUN rm -rf /usr/local/share/jupyter/lab/staging/node_modules/marked
RUN rm -rf /usr/local/share/jupyter/lab/staging/node_modules/node-fetch

HEALTHCHECK NONE
CMD ["/bin/bash"]
4 changes: 0 additions & 4 deletions docker/dockerfile.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,3 @@ RUN if [ "$INSTALL_DISTRIBUTED_EMBEDDINGS" == "true" ]; then \
cd /distributed_embeddings && git checkout ${TFDE_VER} && \
make pip_pkg && pip install artifacts/*.whl && make clean; \
fi
HEALTHCHECK NONE
CMD ["/bin/bash"]
3 changes: 0 additions & 3 deletions docker/dockerfile.torch
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,3 @@ COPY --chown=1000:1000 --from=dlfw /opt/conda/lib/python3.8/site-packages/torch

RUN pip install --no-deps fastai fastcore fastprogress fastdownload
RUN pip install matplotlib

HEALTHCHECK NONE
CMD ["/bin/bash"]

0 comments on commit 88c3b90

Please sign in to comment.