-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (23 loc) · 852 Bytes
/
Dockerfile
File metadata and controls
27 lines (23 loc) · 852 Bytes
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
FROM tuttleofx/tuttleofx:python3-latest
MAINTAINER ButtleOFX <buttleofx-dev@googlegroups.com>
ENV BUTTLEOFX_DEV=/opt/ButtleOFX_git
ENV QUICKMAMBA_DEV=${BUTTLEOFX_DEV}/QuickMamba
ENV PYTHONPATH=${PYTHONPATH}:${BUTTLEOFX_DEV}:${QUICKMAMBA_DEV}
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
qt5-default \
qtdeclarative5-dev \
python3-pyqt5 \
python3-pyqt5.qtquick \
qml-module-qtquick-controls \
qml-module-qtquick-layouts \
qml-module-qtquick-dialogs \
qml-module-qtquick-localstorage \
libgl1-mesa-dev \
mesa-utils \
&& pip3 install numpy PyOpenGL PyOpenGL_accelerate planar \
&& apt-get clean && apt-get autoremove && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /root/.cache
COPY . $BUTTLEOFX_DEV
WORKDIR $BUTTLEOFX_DEV
ENTRYPOINT python3 ${BUTTLEOFX_DEV}/buttleApp.py