File tree 9 files changed +15
-11
lines changed
9 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
27
27
28
28
# Test install rules
29
29
FROM env AS install_env
30
- COPY --from=build /usr/local /usr/local/
30
+ COPY --from=build /usr/local/ /usr/local/
31
31
32
32
FROM install_env AS install_devel
33
33
WORKDIR /home/samples
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
22
22
23
23
# Test install rules
24
24
FROM env AS install_env
25
- COPY --from=build /usr/local /usr/local/
25
+ COPY --from=build /usr/local/ /usr/local/
26
26
27
27
FROM install_env AS install_devel
28
28
WORKDIR /home/samples
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
22
22
23
23
# Test install rules
24
24
FROM env AS install_env
25
- COPY --from=build /usr/local /usr/local/
25
+ COPY --from=build /usr/local/ /usr/local/
26
26
27
27
FROM install_env AS install_devel
28
28
WORKDIR /home/samples
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
25
25
26
26
# Test install rules
27
27
FROM env AS install_env
28
- COPY --from=build /usr/local /usr/local/
28
+ COPY --from=build /usr/local/ /usr/local/
29
29
30
30
FROM install_env AS install_devel
31
31
WORKDIR /home/samples
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
26
26
27
27
# Test install rules
28
28
FROM env AS install_env
29
- COPY --from=build /usr/local /usr/local/
29
+ COPY --from=build /usr/local/ /usr/local/
30
30
31
31
FROM install_env AS install_devel
32
32
WORKDIR /home/samples
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ FROM opensuse/tumbleweed AS env
5
5
# Install system build dependencies
6
6
ENV PATH=/usr/local/bin:$PATH
7
7
RUN zypper update -y \
8
- && zypper install -y git patch gcc gcc-c++ cmake \
8
+ && zypper install -y \
9
+ git patch gcc gcc-c++ cmake \
9
10
&& zypper clean -a
10
11
ENV CC=gcc CXX=g++
11
12
@@ -25,7 +26,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
25
26
26
27
# Test install rules
27
28
FROM env AS install_env
28
- COPY --from=build /usr/local /usr/local/
29
+ COPY --from=build /usr/local/ /usr/local/
29
30
30
31
FROM install_env AS install_devel
31
32
WORKDIR /home/samples
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
27
27
28
28
# Test install rules
29
29
FROM env AS install_env
30
- COPY --from=build /usr/local /usr/local/
30
+ COPY --from=build /usr/local/ /usr/local/
31
31
32
32
FROM install_env AS install_devel
33
33
WORKDIR /home/samples
Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ FROM ubuntu:latest AS env
4
4
# Install system build dependencies
5
5
ENV PATH=/usr/local/bin:$PATH
6
6
RUN apt-get update -qq \
7
- && DEBIAN_FRONTEND=noninteractive apt-get install -yq git wget libssl-dev build-essential \
8
- ninja-build python3 python3-venv pkgconf libglib2.0-dev \
7
+ && DEBIAN_FRONTEND=noninteractive apt-get install -yq \
8
+ git wget libssl-dev \
9
+ build-essential ninja-build \
10
+ python3 python3-venv \
11
+ pkgconf libglib2.0-dev \
9
12
&& apt-get clean \
10
13
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
11
14
ENTRYPOINT ["/usr/bin/bash" , "-c" ]
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v
26
26
27
27
# Test install rules
28
28
FROM env AS install_env
29
- COPY --from=build /usr/local /usr/local/
29
+ COPY --from=build /usr/local/ /usr/local/
30
30
31
31
FROM install_env AS install_devel
32
32
WORKDIR /home/samples
You can’t perform that action at this time.
0 commit comments