-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
19 lines (14 loc) · 964 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM pytorch/pytorch:2.2.0-cuda12.1-cudnn8-devel
# ---------------------------------------------------------------------------- #
# Meta #
# ---------------------------------------------------------------------------- #
LABEL org.opencontainers.image.description="Audio enhancing service for the Lectorium project"
LABEL org.opencontainers.image.source="https://github.com/akdasa-studios/lectorium"
# ---------------------------------------------------------------------------- #
# Install Dependencies #
# ---------------------------------------------------------------------------- #
RUN echo 'Installing dependencies' \
&& apt update \
&& apt install -y ffmpeg git-lfs curl \
&& curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \
&& pip install resemble-enhance --upgrade