1# Create a virtual environment with all tools installed
2# ref: https://hub.docker.com/_/alpine
3FROM alpine:edge
4# Install system build dependencies
5RUN apk add --no-cache git clang
6