Commit ba453fbe authored by Karol Latecki's avatar Karol Latecki Committed by Jim Harris
Browse files

docker: update base to Fedora 35



Update base container image to more recent Fedora 35
version.

Signed-off-by: default avatarKarol Latecki <karol.latecki@intel.com>
Change-Id: I879febc67ffe4c522e5138518d4182b5db99a570
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/14157


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarPawel Piatek <pawelx.piatek@intel.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: default avatarXiaodong Liu <xiaodong.liu@intel.com>
Reviewed-by: default avatarMichal Berger <michal.berger@intel.com>
parent e8a40ada
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ Running `docker-compose build` creates 5 docker images:
- traffic-generator-virtio

The `build_base` image provides the core components required to containerize SPDK
applications. The fedora:33 image from the Fedora Container Registry is used and then SPDK is installed. SPDK is installed out of `build_base/spdk.tar.gz` provided.
applications. The fedora:35 image from the Fedora Container Registry is used and then SPDK is installed. SPDK is installed out of `build_base/spdk.tar.gz` provided.
See `build_base` folder for details on what's included in the final image.

Running `docker-compose up` creates 3 docker containers:
+2 −2
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) Intel Corporation

FROM fedora:33 AS base
FROM fedora:35 AS base

# Generic args
ARG PROXY
@@ -19,7 +19,7 @@ RUN /install
# base, is going to end up as an intermediate one, untagged, <none> - this
# image can be then manually removed (--force-rm doesn't work here. Go
# figure).
FROM fedora:33 AS spdk
FROM fedora:35 AS spdk

LABEL maintainer=spdk.io