diff --git a/Dockerfile b/Dockerfile index 1b95eca..239f832 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,9 @@ FROM nvidia/cuda:11.3.1-cudnn8-devel-ubuntu20.04 ARG DEBIAN_FRONTEND=noninteractive ENV TZ=Europe/London +SHELL ["/bin/bash", "-c"] + + RUN apt-get update && apt-get upgrade -y RUN apt install git -y \ && apt install python3 -y \ @@ -10,8 +13,14 @@ RUN apt install git -y \ && apt install git -y \ && apt install python-is-python3 -y \ && apt install python3-tk -y \ -&& apt install ffmpeg libsm6 libxext6 -y +&& apt install ffmpeg libsm6 libxext6 -y \ +&& apt install git -y + + +WORKDIR /workspace RUN pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113 \ && pip install opencv-python + +RUN pip install SwissArmyTransformer>=0.2.9 icetk gifmaker diff --git a/install_image_local_attention.sh b/install_image_local_attention.sh new file mode 100755 index 0000000..df26da0 --- /dev/null +++ b/install_image_local_attention.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +pip install git+https://github.com/Sleepychord/Image-Local-Attention \ No newline at end of file