Skip to content

Commit

Permalink
Adding missing && before mkdir command
Browse files Browse the repository at this point in the history
  • Loading branch information
logan.young committed Mar 2, 2024
1 parent 6ab992d commit 731ddb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y curl unzip && \
apt-get remove -y curl unzip && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* \
rm -rf /var/lib/apt/lists/* && \
mkdir audio
RUN pip install --no-cache-dir -r ./requirements.txt
EXPOSE 8124
Expand Down

0 comments on commit 731ddb0

Please sign in to comment.