Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Commit 11e34c6

Browse files
committed
Set work directory to be under source directory
1 parent 81436d0 commit 11e34c6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ci/linux/Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3.8 AS build
22
RUN apk add --no-cache ca-certificates cmake make g++ openssl-dev git
33
ADD . /tmp/seabolt
4-
WORKDIR /tmp/build
4+
WORKDIR /tmp/seabolt/build-docker
55
RUN cmake -D CMAKE_BUILD_TYPE=Debug -D CMAKE_INSTALL_PREFIX=dist /tmp/seabolt \
66
&& cmake --build . --target install
77

ci/linux/Dockerfile.package-alpine-3.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RUN apk add --no-cache ca-certificates cmake make g++ openssl-dev git
33
ARG SEABOLT_VERSION
44
ENV SEABOLT_VERSION=$SEABOLT_VERSION
55
ADD . /tmp/seabolt
6-
WORKDIR /tmp/build
6+
WORKDIR /tmp/seabolt/build-docker
77
RUN cmake -D CMAKE_BUILD_TYPE=Release /tmp/seabolt \
88
&& cmake --build . --target package
99
CMD tar -czf - dist-package/seabolt*

ci/linux/Dockerfile.package-centos-7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN yum -y install openssl-devel openssl-static wget pkg-config ca-certificates
55
ARG SEABOLT_VERSION
66
ENV SEABOLT_VERSION=$SEABOLT_VERSION
77
ADD . /tmp/seabolt
8-
WORKDIR /tmp/build
8+
WORKDIR /tmp/seabolt/build-docker
99
RUN /cmake/bin/cmake -D CMAKE_BUILD_TYPE=Release /tmp/seabolt \
1010
&& /cmake/bin/cmake --build . --target package
1111
CMD tar -czf - dist-package/seabolt*

ci/linux/Dockerfile.package-ubuntu-16.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apt-get update \
66
ARG SEABOLT_VERSION
77
ENV SEABOLT_VERSION=$SEABOLT_VERSION
88
ADD . /tmp/seabolt
9-
WORKDIR /tmp/build
9+
WORKDIR /tmp/seabolt/build-docker
1010
RUN /cmake/bin/cmake -D CMAKE_BUILD_TYPE=Release /tmp/seabolt \
1111
&& /cmake/bin/cmake --build . --target package
1212
CMD tar -czf - dist-package/seabolt*

ci/linux/Dockerfile.package-ubuntu-18.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apt-get update \
66
ARG SEABOLT_VERSION
77
ENV SEABOLT_VERSION=$SEABOLT_VERSION
88
ADD . /tmp/seabolt
9-
WORKDIR /tmp/build
9+
WORKDIR /tmp/seabolt/build-docker
1010
RUN /cmake/bin/cmake -D CMAKE_BUILD_TYPE=Release /tmp/seabolt \
1111
&& /cmake/bin/cmake --build . --target package
1212
CMD tar -czf - dist-package/seabolt*

0 commit comments

Comments
 (0)