xianbao HF staff commited on
Commit
967bba2
1 Parent(s): fb16a4a

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -22
Dockerfile DELETED
@@ -1,22 +0,0 @@
1
- FROM docker.io/nvidia/cuda:11.3.1-cudnn8-devel-ubuntu18.04@sha256:17a524d7ec68702e6f1750d486b3434888606aede0de4588a84334208b407bb8
2
- WORKDIR /home/user/app
3
- RUN mkdir app
4
- RUN curl https://pyenv.run | bash
5
- RUN apt-get update && xargs -r -a /root/packages.txt apt-get install -y
6
- RUN apt-get update && apt-get install -y git-lfs
7
- RUN git lfs install
8
- RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx
9
- COPY packages.txt /root/packages.txt
10
- RUN pyenv install 3.8.9
11
- RUN pyenv global 3.8.9
12
- COPY requirements.txt /home/user/app/requirements.txt
13
- RUN pip install -r requirements.txt
14
- RUN pip install --upgrade pip setuptools wheel
15
- WORKDIR /home/user
16
- RUN useradd -m -u 1000 user
17
- RUN pip install streamlit==1.10.0 "protobuf<4" "click<8.1" gradio==2.9.0.1
18
- RUN pyenv rehash
19
- RUN pip install datasets huggingface-hub
20
- RUN apt-get update && apt-get install -y git make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev
21
- COPY --chown=user --from=lfs /app /home/user/app
22
- COPY --chown=user ./ /home/user/app