Created
February 19, 2024 23:15
-
-
Save jamesu/55df61687479fdb02e4b4664e9feeb5b to your computer and use it in GitHub Desktop.
Generic build env
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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