Nils Freydank's base alpine image
https://git.holgersson.xyz/dockerfiles/alpine-x86_64-docker
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
.gitignore | 3 years ago | |
COPYING-MIT | 3 years ago | |
Dockerfile | 3 years ago | |
README.rst | 3 years ago | |
prepare-and-build.sh | 3 years ago |
README.rst
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
</html>
alpine-x86_64
This repository contains a dockerfile to create a most trustworthy base image for further containers. The distribution Alpine Linux is used inside.
Note that alpine linux uses the musl libc, which is faster and far smaller than the typically used glibc, but also far less supported by vendors shipping closed source programms as pre compiled binaries.
Usage
To build this container as a base for other images get sure wget, gnupg and podman/libpod are installed and set up. Then run the setup script
./prepare-and-build.sh
which will generate a container named alpine-${ARCH}:${VERSION}, e.g. alpine-x86_64 (with default parameters). Note that you can overwrite the params directly when calling the script, e.g. as
ARCH="x86" prepare-and-build.sh
for a 32bit installation.