Skip to content

Commit

Permalink
added no-install-recommends
Browse files Browse the repository at this point in the history
  • Loading branch information
cyntachs committed Jun 25, 2024
1 parent d583114 commit c550ac9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ COPY . /workspace/

RUN --mount=type=cache,target=/var/cache/apt,rw --mount=type=cache,target=/var/lib/apt,rw set -eux; \
apt-get update; \
apt-get install git python3-pip -y; \
apt-get install -y tzdata; \
apt-get install libgl1 python3-opencv -y; \
apt-get install --no-install-recommends -y git python3-pip; \
apt-get install --no-install-recommends -y tzdata; \
apt-get install --no-install-recommends libgl1 python3-opencv -y; \
apt-get clean; \
mkdir /stable-diffusion; \
chmod +x /workspace/entrypoint.sh; \
Expand Down

0 comments on commit c550ac9

Please sign in to comment.