2020-09-05 11:33:54 +02:00
|
|
|
FROM debian:sid-slim
|
2020-09-05 13:51:46 +02:00
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils ca-certificates && \
|
2020-09-05 11:33:54 +02:00
|
|
|
apt-get install -y --no-install-recommends build-essential make git && \
|
|
|
|
apt-get install -y --no-install-recommends cmake && \
|
|
|
|
apt-get install -y --no-install-recommends libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-dev && \
|
|
|
|
apt-get clean && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p /project/cmake-build
|
|
|
|
WORKDIR /project/cmake-build
|