Fix: Install package in Dockerfile to resolve ModuleNotFoundError

This commit is contained in:
dannyzen
2025-05-12 17:34:49 -04:00
parent e5610345db
commit 01e72fba70

View File

@@ -38,6 +38,7 @@ RUN git clone https://github.com/ace-step/ACE-Step.git .
RUN pip3 install --no-cache-dir --upgrade pip && \
pip3 install --no-cache-dir hf_transfer peft && \
pip3 install --no-cache-dir -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu126
RUN pip3 install --no-cache-dir .
# Change ownership of app files to appuser
RUN chown -R appuser:appuser /app