From 8d78b5766c7e4a5d7e84042ba714eb75ecc627ea Mon Sep 17 00:00:00 2001 From: PassiveLemon Date: Fri, 14 Apr 2023 15:00:26 -0400 Subject: [PATCH] apt -> apt-get --- services/comfy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/comfy/Dockerfile b/services/comfy/Dockerfile index 4a20d6b..f9eca7a 100644 --- a/services/comfy/Dockerfile +++ b/services/comfy/Dockerfile @@ -8,7 +8,7 @@ ENV DEBIAN_FRONTEND=noninteractive PIP_PREFER_BINARY=1 RUN --mount=type=cache,target=/root/.cache/pip pip install torch==1.13.0 torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117 -RUN apt update && apt install -y git && apt clean +RUN apt-get update && apt-get install -y git && apt-get clean ARG BRANCH=master SHA=ee46bef03a98903831c01d31094a0c30ea411b28 RUN --mount=type=cache,target=/root/.cache/pip <