Skip to content

Instantly share code, notes, and snippets.

@seanbutler
Created September 18, 2024 18:09
Show Gist options
  • Select an option

  • Save seanbutler/b9331e8e970cdc68ab5aa0fe9ce7b8d4 to your computer and use it in GitHub Desktop.

Select an option

Save seanbutler/b9331e8e970cdc68ab5aa0fe9ce7b8d4 to your computer and use it in GitHub Desktop.
Dockerfile to create a Jekyll server to build c++ SDL
# 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