Xiaodong Huang
Xiaodong Huang
这是我的dockerfile文件 ```bash FROM openjdk:11 COPY *.jar /app.jar COPY xjar /xjar ENTRYPOINT ["./xjar","java","--add-opens","java.base/jdk.internal.loader=ALL-UNNAMED","-jar","app.jar"] ``` 执行xjar是不要go环境的。只需要把xjar也丢到镜像里面就好了。
> > 这是我的dockerfile文件 > > ```shell > > FROM openjdk:11 > > > > COPY *.jar /app.jar > > COPY xjar /xjar > > > > ENTRYPOINT ["./xjar","java","--add-opens","java.base/jdk.internal.loader=ALL-UNNAMED","-jar","app.jar"] > >...
@AngelSoulsL 1. windows下运行docker我没有太多经验,我是在linux下跑的。 2. 你这个docker run我没太看明白。 3. 我的步骤是这样的: - 先用docker build命令对dockerfile文件处理得到镜像 - 再用docker run命令 把上一步得到的镜像跑起来。 4. 另外dockerfile第一层引入的openjdk11镜像是在linux系统下的,所以引入的xjar可执行程序必须是在linux下编译得到的可执行程序。在win下编译得到的xjar可执行程序不能直接使用。
how about range search? is nanoflann quicker than flann?
`Failed to find Ceres - Missing requested Ceres components: [SuiteSparse]` Your ceres doesn't have this component.
Do you find out how to move the HUD window?
Hi, do you solve this problem?
It's helpful, many thanks!
- update `3rdparty/spdlog` to the version 1.4.0 or higher(I only test 1.5.0) - add `#include ` to `sdk_core/logger_handler/file_manager.h` - add `#include ` to `sdk_core/comm/define.h` I have only tested the compilation...