From 9f381cd299a8d575d9c4bac46886be098d570507 Mon Sep 17 00:00:00 2001 From: makaveli10 Date: Mon, 7 Aug 2023 23:11:49 +0800 Subject: [PATCH] remove Dockerfile --- Dockerfile | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 8805246..0000000 --- a/Dockerfile +++ /dev/null @@ -1,45 +0,0 @@ -FROM nvidia/cuda:11.2.2-cudnn8-runtime-ubuntu20.04 - -ARG DEBIAN_FRONTEND=noninteractive - -# Remove any third-party apt sources to avoid issues with expiring keys. -RUN rm -f /etc/apt/sources.list.d/*.list - -# Install some basic utilities. -RUN apt-get update && apt-get install -y \ - curl \ - ca-certificates \ - sudo \ - git \ - bzip2 \ - libx11-6 \ - && rm -rf /var/lib/apt/lists/* - -RUN apt update - -# install python -RUN apt install software-properties-common -y && \ - add-apt-repository ppa:deadsnakes/ppa && \ - apt update - -RUN apt install python3-dev -y && \ - apt install python-is-python3 - - -# install pip -RUN apt install python3-pip -y - -# Create a working directory. -RUN mkdir /app -WORKDIR /app - -COPY setup.sh /app -COPY requirements/ /app - -RUN bash setup.sh -RUN pip install -r server.txt - -RUN pip install whisper-live - -COPY run_server.py /app -CMD ["python", "run_server.py"]