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
+3 -1
View File
@@ -11,6 +11,7 @@ click==8.1.7
colorgram.py==1.2.0
ConfigArgParse==1.7
dill==0.3.7
exceptiongroup==1.1.3
Flask==2.3.3
Flask-BasicAuth==0.2.0
Flask-Compress==1.14
@@ -38,7 +39,7 @@ pendulum==3.0.0
Pillow==9.5.0
platformdirs==3.11.0
pluggy==1.3.0
psutil==5.9.3
psutil==5.9.5
pydantic==2.6.3
pydantic_core==2.16.3
pyinstaller==5.13.2
@@ -58,6 +59,7 @@ six==1.16.0
sortedcontainers==2.4.0
tabulate==0.9.0
tinytag==1.9.0
tomli==2.0.1
tomlkit==0.12.1
tqdm==4.66.1
typing_extensions==4.8.0