blob: cbb0bbe734f444dbc17fce9dfbccf2dd0d11d01f [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 Fabian05f71372024-09-20 13:25:39 +020010COPY resources/curl/* /tmp/
Matus Fabian5b175ec2024-09-06 15:30:59 +020011RUN fallocate -l 10MB /tmp/testFile
Florin Corasf26bbea2023-12-21 19:18:25 -080012RUN apt-get update && apt-get install wget
Filip Tehlar31eaea92023-06-15 10:06:57 +020013RUN /build_curl.sh
14
15CMD ["/bin/sh"]