提交测试

This commit is contained in:
2024-01-16 17:22:21 +08:00
parent 92862c0372
commit 73635fda01
654 changed files with 178015 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
# Note: Keep C:\Program Files (x86)\Microsoft Visual Studio\Installer directory.
# disutils/setuptools calls vswhere.exe from that location unconditionally.
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
WORKDIR /kaolin
COPY . .
# NOTE: pin setuptools to avoid directory copy bug
RUN pip install --upgrade --no-cache-dir setuptools==58.0.0 certifi
RUN pip install --no-cache-dir --trusted-host pypi.org --trusted-host pypi.python.org \
--trusted-host files.pythonhosted.org -r tools/build_requirements.txt
RUN python setup.py bdist_wheel --dist-dir .
RUN Get-ChildItem "./" -Filter "*.whl" | Foreach-Object {$filepath=$_.FullName; pip install $filepath}