-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
31 lines (25 loc) · 980 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
FROM debian:8
LABEL maintainer="takahasi <[email protected]>" \
description="OpenRTM on Docker: OpenRTM-aist on Docker images." \
build_type="debian-all"
ENV DEBIAN_FRONTEND noninteractive
RUN set -x && \
apt-get update -qq
COPY pkg_install.sh /
RUN apt-get install -y bc \
cmake \
git \
iputils-ping \
libopencv-dev \
net-tools \
python-tk \
subversion && \
chmod a+x ./pkg_install.sh && sync && \
./pkg_install.sh -l all -c --yes && \
./pkg_install.sh -l all -d --yes && \
svn export http://svn.openrtm.org/ImageProcessing/trunk/ImageProcessing/ && \
cd ImageProcessing/opencv/components/ && mkdir -p build && cd build && \
cmake -DCMAKE_INSTALL_PREFIX=/usr .. && make install && cd /
RUN apt-get autoclean -y && \
apt-get autoremove -y
ENTRYPOINT ["/bin/bash", "-c"]