This commit is contained in:
tunmx
2023-03-08 17:32:57 +08:00
parent f366ccf072
commit 3adc5f24dc
3 changed files with 32 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM ubuntu:18.04
MAINTAINER tunm<tunmxy@163.com>
WORKDIR /work
COPY . /work
COPY 3rdparty_hyper_inspire_op/cmake-3.24.3.tar.gz /root/
# timezone
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
RUN ls 3rdparty_hyper_inspire_op
# && tar -zxvf cmake-3.24.3.tar.gz \
# && cd cmake-3.24.3 \
# && ./bootstrap \
# && make -j$(nproc) \
# && sudo make install \
# && cmake --version
@@ -0,0 +1 @@
+10
View File
@@ -0,0 +1,10 @@
version: "3"
services:
build_linux_x86_shared_lib:
container_name: hlpr_b_x86
image: ubuntu:18.04
volumes:
- .:/work
working_dir: /work
command: bash command/docker_build_linux_x86_shared_lib.sh
tty: true