-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
35 lines (30 loc) · 877 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM ubuntu:17.10
RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANG en_US.utf8
RUN apt-get update && apt-get install -y build-essential \
locate \
lm-sensors \
libcomedi0 \
libcomedi-dev \
apache2 \
ant \
git \
g++ \
apache2 \
ntp \
libclang-dev \
libcgicc-dev \
libgsl0-dev \
libz-dev \
autoconf \
automake \
default-jdk \
libboost-all-dev \
ctags \
texinfo \
sudo
RUN mkdir -p /usr/local/share/man/man1 && git clone https://github.com/pjmaker/nana.git && cd nana && autoreconf --install && ./configure && make && make install && cd .. && rm -rf nana
RUN ln -s /usr/bin/sensors /usr/local/sbin/sensors
COPY ntp.conf /etc/ntp.conf
RUN chmod 644 /etc/ntp.conf