23 lines
513 B
Docker
23 lines
513 B
Docker
# Cause fuck Ubuntu
|
|
FROM debian:bookworm-slim
|
|
|
|
# Who to contact
|
|
LABEL maintainer="cfultz <caleb@fultz.dev>"
|
|
|
|
# Environment
|
|
|
|
|
|
# Update the OS
|
|
RUN apt update && apt upgrade --yes
|
|
|
|
# Helper libraries to compile
|
|
RUN apt install --yes dialog apt-utils wget g++ make cmake
|
|
|
|
RUN apt install --yes libsdl1.2-compat-dev mercurial zlib1g-dev
|
|
|
|
RUN apt install --yes libbz2-dev libjpeg-dev libfluidsynth-dev libgtk2.0-dev timidity nasm
|
|
|
|
RUN apt install --yes libssl-dev tar libglew-dev
|
|
|
|
RUN apt install --yes libgl1-mesa-dev
|