Created
September 18, 2024 18:09
-
-
Save seanbutler/b9331e8e970cdc68ab5aa0fe9ce7b8d4 to your computer and use it in GitHub Desktop.
Dockerfile to create a Jekyll server to build c++ SDL
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
| # Get the base Ubuntu image from Docker Hub | |
| FROM jenkins/jenkins:lts | |
| # Update apps on the base image | |
| RUN apt-get -y update && apt-get install -y | |
| # Install the CMake | |
| RUN apt-get -y install cmake | |
| # Install the Compilation Tools | |
| RUN apt-get -y install clang | |
| RUN apt-get -y install build-essential | |
| # Install the Graphics Library | |
| RUN apt-get -y libsdl2-2.0.0 | |
| RUN apt-get -y libsdl2-dev | |
| RUN apt-get -y libsdl2-doc | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment