Be explicit about source of base images

podman build can't build this Dockerfile if we use unprefixed
images.

Change-Id: I6f3c21fe38bf446b22dbf09e6ceadb98d0f29212
This commit is contained in:
Monty Taylor 2020-03-12 13:45:54 -05:00
parent 611f1867b6
commit d606ac5151
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM opendevorg/python-builder as builder
FROM docker.io/opendevorg/python-builder as builder
# Optional location of Zuul API endpoint.
ARG REACT_APP_ZUUL_API
@ -39,7 +39,7 @@ RUN mkdir /tmp/openshift-install \
&& echo $OPENSHIFT_SHA /tmp/openshift-install/openshift-client.tgz | sha256sum --check \
&& tar xvfz openshift-client.tgz --strip-components=1 -C /tmp/openshift-install
FROM opendevorg/python-base as zuul
FROM docker.io/opendevorg/python-base as zuul
COPY --from=builder /output/ /output
RUN echo "deb http://ftp.debian.org/debian stretch-backports main" >> /etc/apt/sources.list \