Skip to content

Instantly share code, notes, and snippets.

@celiacintas
Created October 22, 2016 18:35
Show Gist options
  • Save celiacintas/fed6505d3fb8899e33f1052774b10922 to your computer and use it in GitHub Desktop.
Save celiacintas/fed6505d3fb8899e33f1052774b10922 to your computer and use it in GitHub Desktop.
FROM pritunl/archlinux
MAINTAINER Celia Cintas <[email protected]> Pablo Navarro <[email protected]>
COPY packages/ /packages
RUN pacman -S --noconfirm git make
RUN pacman -S --noconfirm python2 python2-pip
RUN pacman -S --noconfirm cmake boost
RUN cd packages && pacman -U --noconfirm vtk6-6.3.0-2-x86_64.pkg.tar.xz opencv-3.1.0-3-x86_64.pkg.tar.xz
RUN pacman -S --noconfirm gcc gcc-libs
RUN pacman -S --noconfirm vim
WORKDIR /packages
RUN pacman -U --noconfirm flann-1.8.4-2-x86_64.pkg.tar.xz cuda-7.5.18-2-x86_64.pkg.tar.xz
RUN pacman -U --noconfirm eigen-3.2.8-2-any.pkg.tar.xz
RUN pacman -S --noconfirm mongodb
#Python
RUN pip2 install sh
RUN pip2 install pandas
RUN pip2 install flask
RUN pip2 install Flask-SocketIO
RUN pip2 install pymongo
RUN pip2 install numpy
RUN pip2 install pillow
# RUN mkdir -p /data/db
# PCL
# RUN git clone https://github.com/PointCloudLibrary/pcl.git && \
# cd pcl && mkdir build && \
# cd build && \
# cmake -DCMAKE_BUILD_TYPE=Release .. && \
# make -j2 install && cd ../ && rm -rf pcl/
ENTRYPOINT ["/usr/bin/bash"]
@cyncyncyn
Copy link

Averiguar cómo correr notebooks en docker

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment