Skip to content
Snippets Groups Projects
Commit e41cd0c2 authored by Andrews Sobral's avatar Andrews Sobral
Browse files

Added dockerfiles

parent d0ae1181
No related branches found
No related tags found
No related merge requests found
# docker build --build-arg INCUBATOR_VER=$(date +%Y%m%d-%H%M%S) -t andrewssobral/bgslibrary:opencv_3.4.16py38 .
# docker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY andrewssobral/bgslibrary:opencv_3.4.16py38 bash
FROM andrewssobral/opencv3:3.4.16
WORKDIR /opt
# Changing INCUBATOR_VER will break the cache here
ARG INCUBATOR_VER=unknown
RUN git clone --recursive https://github.com/andrewssobral/bgslibrary.git
ENV BGSLIBRARY_HOME=$PWD/bgslibrary
# Compile C++ library
WORKDIR /opt/bgslibrary/build
RUN cmake .. && make -j4 && make install
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
# Build and install the python wrapper
WORKDIR /opt/bgslibrary
RUN python setup.py build
RUN python setup.py install
ENV PYTHONPATH=$PYTHONPATH:/opt/bgslibrary/build/lib.linux-x86_64-cpython-38
# Compile the C++ QT User Interface
WORKDIR /opt/bgslibrary/gui/qt/build
RUN cmake .. && make -j4
RUN cp bgslibrary_gui ../../..
# Compile examples
WORKDIR /opt/bgslibrary/examples/build
RUN cmake .. && make -j4
# Turn all shell scripts executable
WORKDIR /opt/bgslibrary
RUN chmod +x *.sh
# docker build --build-arg INCUBATOR_VER=$(date +%Y%m%d-%H%M%S) -t andrewssobral/bgslibrary:opencv_3.4.7py38 .
# docker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY andrewssobral/bgslibrary:opencv_3.4.7py38 bash
FROM andrewssobral/opencv3:3.4.7
WORKDIR /opt
# Changing INCUBATOR_VER will break the cache here
ARG INCUBATOR_VER=unknown
RUN git clone --recursive https://github.com/andrewssobral/bgslibrary.git
ENV BGSLIBRARY_HOME=$PWD/bgslibrary
# Compile C++ library
WORKDIR /opt/bgslibrary/build
RUN cmake .. && make -j4 && make install
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
# Build and install the python wrapper
WORKDIR /opt/bgslibrary
RUN python setup.py build
RUN python setup.py install
ENV PYTHONPATH=$PYTHONPATH:/opt/bgslibrary/build/lib.linux-x86_64-cpython-38
# Compile the C++ QT User Interface
WORKDIR /opt/bgslibrary/gui/qt/build
RUN cmake .. && make -j4
RUN cp bgslibrary_gui ../../..
# Compile examples
WORKDIR /opt/bgslibrary/examples/build
RUN cmake .. && make -j4
# Turn all shell scripts executable
WORKDIR /opt/bgslibrary
RUN chmod +x *.sh
# docker build --build-arg INCUBATOR_VER=$(date +%Y%m%d-%H%M%S) -t andrewssobral/bgslibrary:opencv_4.6.0py38 .
# docker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY andrewssobral/bgslibrary:opencv_4.6.0py38 bash
FROM andrewssobral/opencv4:4.6.0
WORKDIR /opt
# Changing INCUBATOR_VER will break the cache here
ARG INCUBATOR_VER=unknown
RUN git clone --recursive https://github.com/andrewssobral/bgslibrary.git
ENV BGSLIBRARY_HOME=$PWD/bgslibrary
# Compile C++ library
WORKDIR /opt/bgslibrary/build
RUN cmake .. && make -j4 && make install
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
# Build and install the python wrapper
WORKDIR /opt/bgslibrary
RUN python setup.py build
RUN python setup.py install
ENV PYTHONPATH=$PYTHONPATH:/opt/bgslibrary/build/lib.linux-x86_64-cpython-38
# Compile the C++ QT User Interface
WORKDIR /opt/bgslibrary/gui/qt/build
RUN cmake .. && make -j4
RUN cp bgslibrary_gui ../../..
# Compile examples
WORKDIR /opt/bgslibrary/examples/build
RUN cmake .. && make -j4
# Turn all shell scripts executable
WORKDIR /opt/bgslibrary
RUN chmod +x *.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment