blob: 90f415f299098784fe543b9ebfae7d96dc84e989 [file] [log] [blame]
Matus Fabian8792e5c2024-08-14 12:38:20 +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/*
Filip Tehlar31eaea92023-06-15 10:06:57 +02008
9COPY script/build_curl.sh /build_curl.sh
Florin Corasf26bbea2023-12-21 19:18:25 -080010RUN apt-get update && apt-get install wget
Filip Tehlar31eaea92023-06-15 10:06:57 +020011RUN /build_curl.sh
12
13CMD ["/bin/sh"]