Skip to content

Commit

Permalink
Fix Dockerfile due to extra &&
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarobartt committed Dec 18, 2024
1 parent 89a633d commit 4d1c1bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ RUN apt-get update && \
python3.11-dev \
libsndfile1-dev \
ffmpeg && \
&& apt-get clean autoremove --yes \
&& rm -rf /var/lib/{apt,dpkg,cache,log}
apt-get clean autoremove --yes && \
rm -rf /var/lib/{apt,dpkg,cache,log}

# Set Python 3.11 as the default python version
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1 && \
Expand Down

0 comments on commit 4d1c1bb

Please sign in to comment.