blob: 8b2652e93fc5fd4778b08c030488a2961a7676e1 (
plain)
1
2
3
4
5
6
7
8
|
ARG UBUNTU_VERSION
FROM ubuntu:${UBUNTU_VERSION}
RUN apt-get update \
&& apt-get install -y gcc git make autoconf libtool pkg-config cmake ninja-build golang \
&& rm -rf /var/lib/apt/lists/*
|