7 lines
126 B
Docker
7 lines
126 B
Docker
|
FROM ubuntu:22.04
|
||
|
|
||
|
run apt-get update && \
|
||
|
apt-get install -y libsdl2-dev libsdl2-2.0-0 cmake g++ && \
|
||
|
apt-get clean
|
||
|
|