mrfakename commited on
Commit
277c87a
·
verified ·
1 Parent(s): 7d7fbde

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -6,8 +6,10 @@ RUN apt-get update -y && \
6
  apt-get upgrade -y && \
7
  apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 ffmpeg curl && \
8
  pip install packaging
9
- RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
10
- RUN echo 'source $HOME/.cargo/env' >> $HOME/.bashrc
 
 
11
  RUN echo "Installing" && \
12
  # pip install -r <(curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g') && \
13
  tmp=$(mktemp) && curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g' | sed 's/flash-attn/flash-attn==1.0.5/' > "$tmp" && pip install -r "$tmp" && rm "$tmp" && \
 
6
  apt-get upgrade -y && \
7
  apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 ffmpeg curl && \
8
  pip install packaging
9
+ RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
10
+ ENV PATH="/root/.cargo/bin:${PATH}"
11
+
12
+
13
  RUN echo "Installing" && \
14
  # pip install -r <(curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g') && \
15
  tmp=$(mktemp) && curl -s https://raw.githubusercontent.com/metavoiceio/metavoice-src/main/requirements.txt | tr '\n' ' ' | sed 's/ /\n/g' | sed 's/flash-attn/flash-attn==1.0.5/' > "$tmp" && pip install -r "$tmp" && rm "$tmp" && \