Building bare-bones AL2023 container images
The AL2023 container image is built from the same software components that
are included in the AL2023 AMI. It includes a software that enables the base
container layer to behave similarly to running on an Amazon EC2 instance, such as
the package manager dnf
. This
section explains how you can construct a container from scratch that includes only the bare
minimum dependencies needed for an application.
Note
The standard AL2023 container images are suitable for most use cases. Using the standard container image makes it easy to build on top of your image. A bare-bones container image makes it more difficult to build on top of your image.
To create a container with bare minimum dependencies for an application
-
Determine your runtime dependencies. This will vary based on your application.
-
Construct a
Dockerfile
/Containerfile
that buildsFROM scratch
. The following example of aDockerfile
can be used to build a container that contains only thebash
shell and its dependencies.FROM public.ecr.aws/amazonlinux/amazonlinux:2023 as build RUN mkdir /sysroot RUN dnf --releasever=$(rpm -q system-release --qf '%{VERSION}') \ --installroot /sysroot \ -y \ --setopt=install_weak_deps=False \ install bash FROM scratch COPY --from=build /sysroot / WORKDIR / ENTRYPOINT ["/bin/bash"]
-
This
Dockerfile
works by:-
Starting a AL2023 container named
build
. This container will be used to bootstrap the barebones container, this container is not deployed itself, but generates the container to be deployed. -
Creating the
/sysroot
directory. This directory will be where thebuild
container will install the dependencies needed for the barebones container. In a subsequent step, the/sysroot
path will be packaged up to be the root directory of our barebones image.Using the
--installroot
option todnf
in this manner is how we create the other AL2023 images. It's a feature ofdnf
that allows installers and image creation tooling to work. -
Invoking
dnf
to install packages into/sysroot
.The
rpm -q system-release --qf '%{VERSION}'
command queries (-q
) thesystem-release
package, setting the query format (--qf
) to print out the version of the package being queried (the%{VERSION}
variable is therpm
variable for the version of theRPM
).By setting the
--releasever
argument ofdnf
to the version ofsystem-release
in thebuild
container, thisDockerfile
can be used to rebuild the barebones container whenever an updated container base image of Amazon Linux is released.It is possible to set the
--releasever
to any Amazon Linux 2023 version, such as 2023.6.20241031. Doing this would mean that thebuild
container would run as the latest AL2023 version, but build the barebones container from 2023.6.20241031 regardless of what was the current AL2023 release.The
--setopt=install_weak_deps=False
configuration option tellsdnf
to only install dependencies that are required rather than recommended or suggested. -
Copying the installed system into the root of a blank (
FROM scratch
) container. -
Setting the
ENTRYPOINT
to be the desired binary, in this case/bin/bash
.
-
-
-
Create an empty directory and add the content of the example in Step 2 to a file named
Dockerfile
.$
mkdir al2023-barebones-bash-example
$
cd al2023-barebones-bash-example
$
cat > Dockerfile <<EOF FROM public.ecr.aws/amazonlinux/amazonlinux:2023 as build RUN mkdir /sysroot RUN dnf --releasever=$(rpm -q system-release --qf '%{VERSION}') \ --installroot /sysroot \ -y \ --setopt=install_weak_deps=False \ install bash && dnf --installroot /sysroot clean all FROM scratch COPY --from=build /sysroot / WORKDIR / ENTRYPOINT ["/bin/bash"] EOF
-
Build the container by running the following command.
$
docker build -t al2023-barebones-bash-example
-
Run the container using the following command to see how minimal a
bash
-only container is.$
docker run -it --rm al2023-barebones-bash-example
bash-5.2#rpm
bash: rpm: command not found bash-5.2#du -sh /usr/
bash: du: command not found bash-5.2#ls
bash: ls: command not found bash-5.2#echo /bin/*
/bin/alias /bin/bash /bin/bashbug /bin/bashbug-64 /bin/bg /bin/catchsegv /bin/cd /bin/command /bin/fc /bin/fg /bin/gencat /bin/getconf /bin/getent /bin/getopts /bin/hash /bin/iconv /bin/jobs /bin/ld.so /bin/ldd /bin/locale /bin/localedef /bin/pldd /bin/read /bin/sh /bin/sotruss /bin/sprof /bin/type /bin/tzselect /bin/ulimit /bin/umask /bin/unalias /bin/wait /bin/zdump
For a more practical example, the following procedure builds a container for a C
application that displays Hello World!
.
-
Create an empty directory and add the C source code and
Dockerfile
.$
mkdir al2023-barebones-c-hello-world-example
$
cd al2023-barebones-c-hello-world-example
$
cat > hello-world.c <<EOF #include <stdio.h> int main(void) { printf("Hello World!\n"); return 0; } EOF
$
cat > Dockerfile <<EOF FROM public.ecr.aws/amazonlinux/amazonlinux:2023 as build COPY hello-world.c / RUN dnf -y install gcc RUN gcc -o hello-world hello-world.c RUN mkdir /sysroot RUN mv hello-world /sysroot/ RUN dnf --releasever=$(rpm -q system-release --qf '%{VERSION}') \ --installroot /sysroot \ -y \ --setopt=install_weak_deps=False \ install glibc && dnf --installroot /sysroot clean all FROM scratch COPY --from=build /sysroot / WORKDIR / ENTRYPOINT ["/hello-world"] EOF
-
Build the container using the following command.
$
docker build -t al2023-barebones-c-hello-world-example .
-
Run the container using the following command.
$
docker run -it --rm al2023-barebones-c-hello-world-example
Hello World!