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

Commit 85219e6

Browse files
committed
Make sure to use custom automake
1 parent 8658cf3 commit 85219e6

File tree

5 files changed

+27
-1
lines changed

5 files changed

+27
-1
lines changed

Dockerfile.bionic-aarch64

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ ENV ARCH=aarch64 DIST=bionic
55
# inherited by build scripts
66
ARG VERBOSE=0
77

8+
COPY /entrypoint-ubuntu.sh /entrypoint.sh
9+
10+
ENTRYPOINT ["/entrypoint.sh"]
11+
SHELL ["/entrypoint.sh", "bash", "-c"]
12+
813
COPY ./install-deps-ubuntu.sh /
914
RUN bash -x /install-deps-ubuntu.sh
1015

Dockerfile.bionic-armhf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ ENV ARCH=armhf DIST=bionic
55
# inherited by build scripts
66
ARG VERBOSE=0
77

8+
COPY /entrypoint-ubuntu.sh /entrypoint.sh
9+
10+
ENTRYPOINT ["/entrypoint.sh"]
11+
SHELL ["/entrypoint.sh", "bash", "-c"]
12+
813
COPY ./install-deps-ubuntu.sh /
914
RUN bash -x /install-deps-ubuntu.sh
1015

Dockerfile.bionic-x86_64

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ ENV ARCH=x86_64 DIST=bionic
55
# inherited by build scripts
66
ARG VERBOSE=0
77

8+
COPY /entrypoint-ubuntu.sh /entrypoint.sh
9+
10+
ENTRYPOINT ["/entrypoint.sh"]
11+
SHELL ["/entrypoint.sh", "bash", "-c"]
12+
813
COPY ./install-deps-ubuntu.sh /
914
RUN bash -x /install-deps-ubuntu.sh
1015

entrypoint-centos.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#! /bin/bash
22

3-
set -e
3+
set -eo pipefail
44

55
source /opt/rh/devtoolset-8/enable
66

7+
export PATH=/deps/bin/:"$PATH"
8+
export PKG_CONFIG_PATH=/deps/lib/pkgconfig:"$PKG_CONFIG_PATH"
9+
710
exec "$@"

entrypoint-ubuntu.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#! /bin/bash
2+
3+
set -eo pipefail
4+
5+
export PATH=/deps/bin/:"$PATH"
6+
export PKG_CONFIG_PATH=/deps/lib/pkgconfig:"$PKG_CONFIG_PATH"
7+
8+
exec "$@"

0 commit comments

Comments
 (0)