mrfakename commited on
Commit
3279cac
·
1 Parent(s): 5a68cb6
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -3,6 +3,7 @@ FROM nvidia/cuda:12.2.0-base-ubuntu22.04
3
  RUN apt-get update -y && \
4
  apt-get upgrade -y && \
5
  apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 ffmpeg curl && \
 
6
  # pip install -r <(curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g') && \
7
  tmp=$(mktemp) && curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g' > "$tmp" && pip install -r "$tmp" && rm "$tmp" && \
8
  adduser --disabled-password --gecos '' user && \
 
3
  RUN apt-get update -y && \
4
  apt-get upgrade -y && \
5
  apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 ffmpeg curl && \
6
+ pip install packaging && \
7
  # pip install -r <(curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g') && \
8
  tmp=$(mktemp) && curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g' > "$tmp" && pip install -r "$tmp" && rm "$tmp" && \
9
  adduser --disabled-password --gecos '' user && \