This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 基于Miniconda3镜像
FROM continuumio/miniconda3
# 设置工作目录
WORKDIR /SadTalker
# 复制项目文件到容器中
COPY . /SadTalker
# 创建并激活Conda环境,安装必要的依赖
RUN conda create --name sadtalker python=3.8 -y &&\