-
Notifications
You must be signed in to change notification settings - Fork 87
/
Dockerfile
31 lines (24 loc) · 1022 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04 AS fish-diffusion
FROM python:3.10-bullseye
# Install system dependencies
RUN apt-get update && apt-get install -y git curl build-essential \
ffmpeg libsm6 libxext6 openssh-server sudo && apt-get clean && rm -rf /var/lib/apt/lists/*
# Install fish user and ssh
RUN useradd -rm -d /home/fish -s /bin/bash -g root -G sudo -u 1000 fish && \
echo 'fish:fish' | chpasswd && \
ln -s /home/fish /app && \
systemctl enable ssh && \
mkdir /run/sshd
EXPOSE 22
# Install PDM
RUN curl -sSL https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py | python3 -
ENV PATH="/root/.local/bin:${PATH}"
# Install dependencies
WORKDIR /app
RUN git clone https://github.com/fishaudio/fish-diffusion.git --depth 1 && cd fish-diffusion && \
pdm sync && rm -rf ~/.cache/pdm
ENV PATH="/app/fish-diffusion/.venv/bin:${PATH}"
WORKDIR /app/fish-diffusion
RUN python3 tools/download_nsf_hifigan.py --agree-license
# Entry point
CMD ["/usr/sbin/sshd", "-D"]