Changed docker image to base of Debian instead of Alpine so it links against glibc instead of musl.
This commit is contained in:
parent
f2f9998d8b
commit
9741e63dd0
33
Dockerfile
33
Dockerfile
@ -1,16 +1,19 @@
|
||||
FROM alpine:3.21.3
|
||||
FROM debian:sid-slim
|
||||
|
||||
RUN apk add \
|
||||
scons \
|
||||
pkgconf \
|
||||
gcc \
|
||||
g++ \
|
||||
libx11-dev \
|
||||
libxcursor-dev \
|
||||
libxinerama-dev \
|
||||
libxi-dev \
|
||||
libxrandr-dev \
|
||||
mesa-dev \
|
||||
eudev-dev \
|
||||
alsa-lib-dev \
|
||||
pulseaudio-dev
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y \
|
||||
build-essential \
|
||||
scons \
|
||||
pkg-config \
|
||||
libx11-dev \
|
||||
libxcursor-dev \
|
||||
libxinerama-dev \
|
||||
libgl1-mesa-dev \
|
||||
libglu1-mesa-dev \
|
||||
libasound2-dev \
|
||||
libpulse-dev \
|
||||
libudev-dev \
|
||||
libxi-dev \
|
||||
libxrandr-dev \
|
||||
libwayland-dev
|
||||
|
Loading…
x
Reference in New Issue
Block a user