mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
10 lines
257 B
Text
10 lines
257 B
Text
|
|
# 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
|