Skip to content

Commit

Permalink
test/remote: Allow override of base image (#9734)
Browse files Browse the repository at this point in the history
ubuntu:22.04 bumped the ppc64el baseline to POWER9, rendering this
unusable on existing POWER8 systems.  This allows customization similar
to the top-level Dockerfile.

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
  • Loading branch information
yselkowitz authored and crenshaw-dev committed Jun 21, 2022
1 parent 211e9f6 commit 0a2520f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/remote/Dockerfile
@@ -1,9 +1,11 @@
ARG BASE_IMAGE=docker.io/library/ubuntu:22.04

FROM golang:1.18 AS go

RUN go install github.com/mattn/goreman@latest && \
go install github.com/kisielk/godepgraph@latest

FROM ubuntu:22.04
FROM $BASE_IMAGE

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install --no-install-recommends -y \
Expand Down

0 comments on commit 0a2520f

Please sign in to comment.