Skip to content

Commit

Permalink
try debian trixie
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Jan 14, 2025
1 parent f9450f2 commit a522126
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# BASE docker image for music assistant container

FROM python:3.13-bookworm
FROM debian:trixie

ARG TARGETPLATFORM

Expand All @@ -15,6 +15,7 @@ RUN set -x \
git \
wget \
tzdata \
python3 \
libsox-fmt-all \
libsox3 \
ffmpeg \
Expand All @@ -23,10 +24,7 @@ RUN set -x \
cifs-utils \
libnfs-utils \
libjemalloc2 \
# install snapcast server 0.28 from bookworm backports
&& bash -c 'echo "deb http://deb.debian.org/debian bookworm-backports main" >> /etc/apt/sources.list' \
&& apt-get update \
&& apt-get install -y --no-install-recommends -t bookworm-backports snapserver \
snapserver \
# cleanup
&& rm -rf /tmp/* \
&& rm -rf /var/lib/apt/lists/*
Expand All @@ -45,7 +43,7 @@ RUN \

# create python venv
ENV VIRTUAL_ENV=/app/venv
RUN python -m venv $VIRTUAL_ENV && \
RUN python3 -m venv $VIRTUAL_ENV && \
bash -c 'source $VIRTUAL_ENV/bin/activate' && \
pip install --upgrade pip \
&& pip install uv==0.4.17
Expand Down

0 comments on commit a522126

Please sign in to comment.