You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM ubuntu:18.04
|
|
|
|
MAINTAINER tunm<tunmxy@163.com>
|
|
|
|
# timezone
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
RUN echo 'Asia/Shanghai' >/etc/timezone
|
|
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install cmake -y
|
|
RUN apt-get install build-essential -y
|