Skip to content

Commit

Permalink
change entrypoint to cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
mshannon-sil committed Jul 6, 2023
1 parent e02b37c commit 38b6e14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2
./aws/install && \
rm awscliv2.zip
RUN rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "/bin/bash", "-l", "-c" ]
CMD ["bash"]
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2
./aws/install && \
rm awscliv2.zip
RUN rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "/bin/bash", "-l", "-c" ]
CMD ["bash"]
2 changes: 1 addition & 1 deletion silnlp/nmt/clearml_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __post_init__(self) -> None:
self._load_config()

self.task.set_base_docker(
docker_image="ghcr.io/sillsdev/silnlp:latest",
docker_image="ghcr.io/sillsdev/silnlp:1.01.1",
docker_arguments="-v /home/clearml/.clearml/hf-cache:/root/.cache/huggingface"
)
if self.queue_name.lower() not in ("local", "locally"):
Expand Down

0 comments on commit 38b6e14

Please sign in to comment.