ARG UBUNTU_VER=resolute FROM ubuntu:${UBUNTU_VER} ENV DEBIAN_FRONTEND=noninteractive RUN find /etc/apt/ -type f \( -name "*.list" -o -name "*.sources" \) | xargs sed -i 's/ports.ubuntu.com/kr.ports.ubuntu.com/g' && \ apt-get update && \ apt-get install -y --no-install-recommends \ curl \ build-essential \ debhelper \ devscripts \ autoconf \ automake \ libtool \ pkg-config \ git \ cmake \ texlive-latex-base \ texlive-fonts-recommended && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* WORKDIR /build