blob: fe9b4d917c7fa9d1bd5048e03192c2482f312fd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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/*
COPY script/build_curl.sh /build_curl.sh
RUN fallocate -l 10MB /tmp/testFile
RUN apt-get update && apt-get install wget
RUN /build_curl.sh
CMD ["/bin/sh"]
|