dockerfile: install gcc

This commit is contained in:
cwilvx
2024-05-25 16:57:30 +03:00
parent 219b3e606e
commit eb70887c93
2 changed files with 8 additions and 5 deletions
+5 -4
View File
@@ -25,11 +25,12 @@ VOLUME /music
VOLUME /config
RUN pip install -r requirements.txt
RUN apt-get update && apt-get install -y ffmpeg libavcodec-extra gcc-aarch64-linux-gnu && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y gcc python3-dev -y ffmpeg libavcodec-extra gcc-aarch64-linux-gnu && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN pip install -r requirements.txt
ARG app_version
ENV SWINGMUSIC_APP_VERSION=$app_version