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.
1 parent 96184f0 commit f2b7cb1Copy full SHA for f2b7cb1
Dockerfile
@@ -0,0 +1,9 @@
1
+FROM danieltobon43/pcl-docker:1.12.1-alpine3.15-dev AS build
2
+COPY . /tmp
3
+WORKDIR /tmp
4
+RUN cmake -B `pwd`/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install && \
5
+ make -j$(nproc) -C build/ --no-print-directory && make install -C build/
6
+
7
+FROM danieltobon43/pcl-docker:1.12.1-alpine3.15 AS runtime
8
+COPY --from=build /tmp/install /usr
9
+ENTRYPOINT ["pcl-visualizer"]
0 commit comments