11 lines
267 B
Docker
11 lines
267 B
Docker
FROM ubuntu:18.04
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -qqy \
|
|
build-essential nasm autotools-dev autoconf libcurl4-openssl-dev libjemalloc-dev tcl tcl-dev uuid-dev libcurl4-openssl-dev \
|
|
&& apt-get clean
|
|
|
|
CMD make
|