blob: fe9b4d917c7fa9d1bd5048e03192c2482f312fd9 [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
Matus Fabian5b175ec2024-09-06 15:30:59 +020010RUN fallocate -l 10MB /tmp/testFile
Florin Corasf26bbea2023-12-21 19:18:25 -080011RUN apt-get update && apt-get install wget
Filip Tehlar31eaea92023-06-15 10:06:57 +020012RUN /build_curl.sh
13
14CMD ["/bin/sh"]