How to build Docker Flower images locally#

Flower provides pre-made docker images on Docker Hub that include all necessary dependencies for running the SuperLink, SuperNode or ServerApp. You can also build your own custom docker images from scratch with a different version of Python or Linux distribution (Ubuntu/Alpine) if that is what you need. In this guide, we will explain what images exist and how to build them locally.

Before we can start, we need to meet a few prerequisites in our local development environment.

  1. Clone the flower repository.

    $ git clone https://github.com/adap/flower.git && cd flower
    
  2. Verify the Docker daemon is running.

    Please follow the first section on Run Flower using Docker which covers this step in more detail.

The build instructions that assemble the images are located in the respective Dockerfiles. You can find them in the subdirectories of src/docker.

Flower Docker images are configured via build arguments. Through build arguments, we can make the creation of images more flexible. For example, in the base image, we can specify the version of Python to install using the PYTHON_VERSION build argument. Some of the build arguments have default values, others must be specified when building the image. All available build arguments for each image are listed in one of the tables below.

Building the base image#

Build argument

Description

Required

Example

DISTRO

The Linux distribution to use as the base image.

No

ubuntu

DISTRO_VERSION

Version of the Linux distribution.

No

22.04

PYTHON_VERSION

Version of python to be installed.

No

3.11 or 3.11.1

PIP_VERSION

Version of pip to be installed.

Yes

23.0.1

SETUPTOOLS_VERSION

Version of setuptools to be installed.

Yes

69.0.2

FLWR_VERSION

Version of Flower to be installed.

Yes

1.10.0

FLWR_PACKAGE

The Flower package to be installed.

No

flwr or flwr-nightly

The following example creates a base Ubuntu/Alpine image with Python 3.11.0, pip 23.0.1, setuptools 69.0.2 and Flower 1.10.0:

$ cd src/docker/base/<ubuntu|alpine>
$ docker build \
  --build-arg PYTHON_VERSION=3.11.0 \
  --build-arg FLWR_VERSION=1.10.0 \
  --build-arg PIP_VERSION=23.0.1 \
  --build-arg SETUPTOOLS_VERSION=69.0.2 \
  -t flwr_base:0.1.0 .

The name of image is flwr_base and the tag 0.1.0. Remember that the build arguments as well as the name and tag can be adapted to your needs. These values serve as examples only.