Skip to content

Instantly share code, notes, and snippets.

@sofianhamiti
Created May 22, 2021 23:01
Show Gist options
  • Save sofianhamiti/f10a1cda31e200b1a82bdbc48522fb7e to your computer and use it in GitHub Desktop.
Save sofianhamiti/f10a1cda31e200b1a82bdbc48522fb7e to your computer and use it in GitHub Desktop.
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