mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2025-04-07 01:12:05 +00:00
10 lines
257 B
Docker
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 |