Skip to content

Commit

Permalink
chore: use Debian bullseye to build release images
Browse files Browse the repository at this point in the history
Using bookworm may cause GLibc problems on old systems.
devgianlu committed Nov 7, 2024
1 parent 08e546e commit 8f0f1dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 docker.io/golang:1.22.2-bookworm
FROM --platform=linux/amd64 docker.io/golang:1.22.2-bullseye

ENV COMMIT=dev
ENV VERSION=0.0.0
@@ -35,7 +35,7 @@ RUN if [ ${TARGET} = arm-rpi-linux-gnueabihf ]; then \

# Compile dependency sources
RUN cd /tmp/alsa-lib-1.2.10 && \
./configure --enable-shared=yes --enable-static=no --with-pic --host=${TARGET} --prefix=/tmp/deps/${TARGET} || cat config.log && \
./configure --enable-shared=yes --enable-static=no --with-pic --host=${TARGET} --prefix=/tmp/deps/${TARGET} && \
make && make install
RUN cd /tmp/libogg-1.3.5 && \
./configure --host=${TARGET} --prefix=/tmp/deps/${TARGET} && \

0 comments on commit 8f0f1dd

Please sign in to comment.