blob: 8b2652e93fc5fd4778b08c030488a2961a7676e1 [file] [log] [blame]
Filip Tehlar31eaea92023-06-15 10:06:57 +02001ARG UBUNTU_VERSION
2
3FROM ubuntu:${UBUNTU_VERSION}
4
5RUN apt-get update \
6 && apt-get install -y gcc git make autoconf libtool pkg-config cmake ninja-build golang \
7 && rm -rf /var/lib/apt/lists/*
8