thunderbrew/vendor/glew-cmake-2.2.0/glew-cmake/Dockerfile

10 lines
257 B
Docker

# Azure pipeline require glibc based image
FROM debian:buster-slim
RUN apt update && \
apt install -y git make gcc python && \
apt clean && \
rm -rf /var/lib/apt/lists/*
RUN mkdir -p ~/.ssh && \
ssh-keyscan github.com >> ~/.ssh/known_hosts