Skip to content

Commit 09df19f

Browse files
author
Dominique Quatravaux
committed
[hotfix] httpd build failure
As it turns out, multi-stage Docker builds is kind of [an accidental feature](openshift/origin#21627) of OpenShift 3.10+, and as such, it comes with its pitfalls. - As the second FROM doesn't get rewritten, we must use an “OpenShift-realistic” name for the image if it is to succeed on OpenShift - While we are at it, do same for mgmt (and we'll have to fix wp-dev accordingly, as it relies on the very same set of Dockerfiles)
1 parent 607a58a commit 09df19f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/httpd/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM epflsi/os-wp-base
1+
FROM docker-registry.default.svc:5000/wwp-test/wp-base
22

33
RUN perl -i -pe 's/^# deb-src/deb-src/' /etc/apt/sources.list /etc/apt/sources.list.d/*.list
44

@@ -15,7 +15,7 @@ RUN set -e -x; mkdir /build; cd /build; \
1515
cd msmtp*; dpkg-buildpackage -d; \
1616
mkdir /deb; mv ../*.deb /deb
1717

18-
FROM epflsi/os-wp-base
18+
FROM docker-registry.default.svc:5000/wwp-test/wp-base
1919

2020
RUN apt-get -qy update && apt-get -qy install --no-install-recommends \
2121
apache2 \

docker/mgmt/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM epflsi/os-wp-base
1+
FROM docker-registry.default.svc:5000/wwp-test/mgmt
22

33
RUN apt-get -qy update && apt-get -qy install --no-install-recommends \
44
bash-completion \

0 commit comments

Comments
 (0)