Skip to content

Latest commit

 

History

History
85 lines (58 loc) · 6.31 KB

README.md

File metadata and controls

85 lines (58 loc) · 6.31 KB

Project Name

CodeFactor GitHub Workflow Status (with event)

This is the docker image for Source/Project: Project details. from the community.

Get the Dockerfile at GitHub, or pull the image from ghcr.io or quay.io.

Usage Command

Mount the current directory as /output and run Dockerfile-template with additional input arguments.
The downloaded files will be saved to where you run the command.

docker run -it -v ".:/output" ghcr.io/jim60105/Dockerfile-template [options] [url]

The [options], [url] placeholder should be replaced with the options and arguments for Dockerfile-template. Check the Dockerfile-template README for more information.

You can find all available tags at ghcr.io or quay.io.

Available tags

This repository contains three Dockerfiles for building Docker images based on different base images:

Dockerfile Base Image
alpine.Dockerfile Python official image 3.11-alpine
ubi.Dockerfile Red Hat Universal Base Image 9 Minimal
distroless.Dockerfile Google Distroless python3-debian12

And, built with the following code version of Dockerfile-template: main branch, v2.2.0, v2.1.3.

Code Version Alpine UBI Distroless
main branch alpine, latest ubi distroless
v2.2.0 v2.2.0, v2.2.0-alpine v2.2.0-ubi v2.2.0-distroless
v2.1.3 v2.1.3, v2.1.3-alpine v2.1.3-ubi v2.1.3-distroless

Tip

I've notice that that both the UBI version and the Distroless version offer no advantages over the Alpine version. So please use the Alpine version unless you have specific reasons not to. All of these base images are great, some of them were simply not that suitable for our project.

Build Command

Important

Clone the Git repository recursively to include submodules:
git clone --recursive https://github.com/jim60105/Dockerfile-template.git

Note

If you are using an earlier version of the docker client, it is necessary to enable the BuildKit mode when building the image. This is because I used the COPY --link feature which enhances the build performance and was introduced in Buildx v0.8.
With the Docker Engine 23.0 and Docker Desktop 4.19, Buildx has become the default build client. So you won't have to worry about this when using the latest version.

For example, if you want to build the alpine image:

docker build -f alpine.Dockerfile -t Dockerfile-template:alpine .

LICENSE

Note

The main program, source/Dockerfile-template, is distributed under MIT.
Please consult their repository for access to the source code and licenses.
The following is the license for the Dockerfiles and CI workflows in this repository.

Caution

A GPLv3 licensed Dockerfile means that you MUST distribute the source code with the same license, if you

  • Re-distribute the image. (You can simply point to this GitHub repository if you doesn't made any code changes.)
  • Distribute a image that uses code from this repository.
  • Or distribute a image based on this image. (FROM ghcr.io/jim60105/Dockerfile-template in your Dockerfile)

"Distribute" means to make the image available for other people to download, usually by pushing it to a public registry. If you are solely using it for your personal purposes, this has no impact on you.

Please consult the LICENSE for more details.

gplv3

GNU GENERAL PUBLIC LICENSE Version 3

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.