Created
May 22, 2021 23:01
-
-
Save sofianhamiti/f10a1cda31e200b1a82bdbc48522fb7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM nvcr.io/nvidia/tritonserver:21.05-py3 | |
| # INSTALL AWS CLI | |
| RUN apt-get update && apt-get install -y \ | |
| unzip \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \ | |
| && unzip awscliv2.zip \ | |
| && ./aws/install \ | |
| && rm -f awscliv2.zip | |
| # COPY ENTRYPOINT FILE | |
| COPY run.sh /tmp/run.sh | |
| RUN chmod +x /tmp/run.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment