We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e63674 + ee029e2 commit bfffb80Copy full SHA for bfffb80
.dockerignore
@@ -0,0 +1,19 @@
1
+__pycache__/
2
+*.py[cod]
3
+*$py.class
4
+.Python
5
+env
6
+pip-log.txt
7
+pip-delete-this-directory.txt
8
+.tox
9
+.coverage
10
+.coverage.*
11
+.cache
12
+nosetests.xml
13
+coverage.xml
14
+*.cover
15
+*.log
16
+.git
17
+.mypy_cache
18
+.pytest_cache
19
+.hypothesis
Dockerfile
@@ -13,6 +13,7 @@ RUN apt install -y libsm6 \
WORKDIR /usr/src/labelbox
COPY requirements.txt /usr/src/labelbox
RUN pip install -r requirements.txt
-COPY . /usr/src/labelbox
+COPY setup.py README.md /usr/src/labelbox/
+COPY labelbox /usr/src/labelbox/labelbox
RUN python setup.py install
0 commit comments