Change-Id: Ia985a05fd0e02ec40f4671aea06c443e3233b17a Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
26 lines
573 B
Docker
26 lines
573 B
Docker
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
|
|
|