Skip to content

Commit fee10d1

Browse files
authored
Merge pull request #135 from data-apis/add-orange3
PR: Add orange3
2 parents 187ecca + 050cba0 commit fee10d1

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

k8/images/orange3/Dockerfile

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# syntax = docker/dockerfile:1.1.7-experimental
2+
ARG FROM
3+
FROM ${FROM}
4+
5+
WORKDIR /usr/src/app
6+
7+
8+
RUN git clone \
9+
--branch 3.27.1 \
10+
--depth 1 \
11+
https://github.com/biolab/orange3.git \
12+
.
13+
14+
RUN apt update
15+
RUN apt install -y libqt5opengl5-desktop-dev
16+
17+
RUN --mount=type=cache,target=/root/.cache/pip \
18+
pip install -e . \
19+
pytest-custom_exit_code \
20+
pytest
21+
22+
RUN python -c "import Orange"
23+
24+
ENV PYTHON_RECORD_API_FROM_MODULES=Orange
25+
CMD ["pytest", "--verbose", "Orange/tests/", "--suppress-tests-failed-exit-code"]

k8/images/orange3/version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1

0 commit comments

Comments
 (0)