Skip to content

Instantly share code, notes, and snippets.

@jamesu
Created February 19, 2024 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesu/55df61687479fdb02e4b4664e9feeb5b to your computer and use it in GitHub Desktop.
Save jamesu/55df61687479fdb02e4b4664e9feeb5b to your computer and use it in GitHub Desktop.
Generic build env
FROM ubuntu:latest
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && \
apt-get install -y build-essential cmake libsdl2-dev libsdl2-mixer-dev libogg-dev libopenal-dev
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*
CMD ["bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment