diff --git a/serverless/image-to-video/Dockerfile b/serverless/image-to-video/Dockerfile index c16b336..dfca16a 100644 --- a/serverless/image-to-video/Dockerfile +++ b/serverless/image-to-video/Dockerfile @@ -31,7 +31,7 @@ COPY --chown=user:user api/ /app/api/ COPY --chown=user:user scripts/ /app/scripts/ COPY --chown=user:user configs/ /app/configs/ COPY --chown=user:user setup.py /app/ -COPY --chown=user:user pyproject.toml /app/ + # Install Python dependencies RUN pip install --no-cache-dir -U pip setuptools wheel && \ diff --git a/serverless/inpainting/Dockerfile b/serverless/inpainting/Dockerfile index 10c103f..d505f41 100644 --- a/serverless/inpainting/Dockerfile +++ b/serverless/inpainting/Dockerfile @@ -31,7 +31,6 @@ COPY --chown=user:user api/ /app/api/ COPY --chown=user:user scripts/ /app/scripts/ COPY --chown=user:user configs/ /app/configs/ COPY --chown=user:user setup.py /app/ -COPY --chown=user:user pyproject.toml /app/ # Install Python dependencies RUN pip install --no-cache-dir -U pip setuptools wheel && \ diff --git a/serverless/outpainting/Dockerfile b/serverless/outpainting/Dockerfile index 27108b8..8abd0bf 100644 --- a/serverless/outpainting/Dockerfile +++ b/serverless/outpainting/Dockerfile @@ -31,7 +31,7 @@ COPY --chown=user:user api/ /app/api/ COPY --chown=user:user scripts/ /app/scripts/ COPY --chown=user:user configs/ /app/configs/ COPY --chown=user:user setup.py /app/ -COPY --chown=user:user pyproject.toml /app/ + # Install Python dependencies RUN pip install --no-cache-dir -U pip setuptools wheel && \ diff --git a/serverless/text-to-image/Dockerfile b/serverless/text-to-image/Dockerfile index ea5a798..5614041 100644 --- a/serverless/text-to-image/Dockerfile +++ b/serverless/text-to-image/Dockerfile @@ -31,7 +31,7 @@ COPY --chown=user:user api/ /app/api/ COPY --chown=user:user scripts/ /app/scripts/ COPY --chown=user:user configs/ /app/configs/ COPY --chown=user:user setup.py /app/ -COPY --chown=user:user pyproject.toml /app/ + # Install Python dependencies RUN pip install --no-cache-dir -U pip setuptools wheel && \