aboutsummaryrefslogtreecommitdiff
path: root/opal-ci
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2018-11-29 10:40:54 +1030
committerStewart Smith <stewart@linux.ibm.com>2018-11-28 20:17:26 -0600
commitb211d20162c88a9b117f3833f23c6f8af2745628 (patch)
treeffd9c632f8607656075a896fd90e6d8f7c9ecc7c /opal-ci
parentad2ca201f46c2d238d78880a155cdf09298edc65 (diff)
downloadskiboot-b211d20162c88a9b117f3833f23c6f8af2745628.zip
skiboot-b211d20162c88a9b117f3833f23c6f8af2745628.tar.gz
skiboot-b211d20162c88a9b117f3833f23c6f8af2745628.tar.bz2
opal-ci: Use ubuntu:rolling for Ubuntu latest image
This updates the Ubuntu 'latest' to use ubuntu:rolling, which is the most recent release. It turns out that ubuntu:latest is actually the latest LTS (18.04). Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'opal-ci')
-rw-r--r--opal-ci/Dockerfile-ubuntu-latest4
1 files changed, 2 insertions, 2 deletions
diff --git a/opal-ci/Dockerfile-ubuntu-latest b/opal-ci/Dockerfile-ubuntu-latest
index c729214..68fee7b 100644
--- a/opal-ci/Dockerfile-ubuntu-latest
+++ b/opal-ci/Dockerfile-ubuntu-latest
@@ -1,4 +1,4 @@
-FROM ubuntu:latest
+FROM ubuntu:rolling
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -qq
RUN if [ `arch` != "ppc64le" ]; then apt-get update -qq && apt-get install -y gcc-powerpc64le-linux-gnu; fi
@@ -7,4 +7,4 @@ RUN apt-get update -qq && apt-get install -y gcc-arm-linux-gnueabi || true
RUN if [ `arch` = "x86_64" ]; then curl -L -O http://public.dhe.ibm.com/software/server/powerfuncsim/p8/packages/v1.0-2/systemsim-p8_1.0-2_amd64.deb; dpkg -i systemsim-p8_1.0-2_amd64.deb; fi
RUN if [ `arch` = "x86_64" ]; then curl -O http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0-trusty_amd64.deb; dpkg -i systemsim-p9-1.1-0-trusty_amd64.deb; fi
COPY . /build/
-WORKDIR /build \ No newline at end of file
+WORKDIR /build