Skip to main content

Commandline tool to reduce the size of your Docker Images

Project description

DockerShrink

Dockershrink is an AI-powered Commandline Tool that helps you reduce the size of your Docker images.

Typical interaction with dockershrink CLI

It combines the power of traditional Rule-based analysis with Generative AI to apply state-of-the-art optimizations to your Image configurations :brain:

Dockershrink can automatically apply techniques like Multi-Stage builds, switching to Lighter base images like alpine and running dependency checks. PLUS a lot more is on the roadmap :rocket:

Currently, the tool only supports NodeJS applications.

[!IMPORTANT] Dockershrink is BETA software.

You can provide your feedback by creating an Issue in this repository.

Why does dockershrink exist?

Every org using containers in development or production environments understands the pain of managing hundreds or even thousands of bloated Docker images in their infrastructure.

But not everyone realizes that by just implementing some basic techniques, they can reduce the size of a 1GB Docker image down to as little as 100 MB!

(I also made a video on how to do this.)

Imagine the costs saved in storage & data transfer, decrease in build times AND the productivity gains for developers :exploding_head:

Dockershrink aims to auomatically apply advanced optimization techniques so engineers don't have to waste time on it and the organization still reaps the benefits!

You're welcome :wink:

How it works

When you invoke the dockershrink CLI on your project, it analyzes code files.

Dockershrink looks for the following files:

:point_right: Dockerfile (Required)

:point_right: package.json (Optional)

:point_right: .dockerignore (Optional, created if it doesn't already exist)

It then creates a new directory (default: dockershrink.optimized) inside the project, which contains modified versions of your configuration files that will result in a smaller Docker Image.

The CLI outputs a list of actions it took over your files.

It may also include suggestions on further improvements you could make.

Installation

You can install dockershrink using PIP or PIPX

$ pip install dockershrink
$ pipx install dockershrink

Usage

Navigate into the root directory of one of your Node.js projects and invoke dockershrink with the optimize command:

$ dockershrink optimize

Dockershrink will create a new directory with the optimized files and output the actions taken and (maybe) some more suggestions.

For detailed information about the optimize command, run

dockershrink optimize --help

Using AI Features

[!NOTE] Using AI features is optional, but highly recommended for more customized and powerful optimizations.

To use AI, you need to supply your own OpenAI API key, so even though Dockershrink itself is free, openai usage might incur some cost for you.

By default, dockershrink only runs rule-based analysis to optimize your image definition.

If you want to enable AI, you must supply your OpenAI API Key.

dockershrink optimize --openai-api-key <your openai api key>

# Alternatively, you can supply the key as an environment variable
export OPENAI_API_KEY=<your openai api key>
dockershrink optimize

[!NOTE] Dockershrink does not store your OpenAI API Key.

So you must provide your key every time you want "optimize" to use AI features. This is to avoid any unexpected costs.

Default file paths

By default, the CLI looks for the files to optimize in the current directory.

You can also specify the paths to all files using options (see dockershrink optimize --help for the available options).


Development :computer:

[!NOTE] This section is for authors and contributors. If you're simply interested in using Dockershrink, you can skip this section.

  1. Clone this repository
  2. Navigate inside the root directory of the project and create a new virtual environment
python3 -m venv .venv
source .venv/bin/activate
  1. Install all dependencies
pip install --no-cache-dir -r requirements.txt
  1. Install the editable CLI tool
# -e ensures that the tool is editable, ie, code changes reflect in the tool immediately, without having to re-install it
pip install -e .

# Try running the cli
dockershrink --help
  1. Make your code changes
  2. Run black
black .
  1. In case of any changes in dependencies, update requirements.txt
pip freeze > requirements.txt

Release :rocket:

Once all code changes have been made for the next release:

Then proceed to follow these steps to release new dockershrink version on PyPI:

  1. Build dockershrink from source
python -m build
  1. Upload to testpypi
twine upload --repository testpypi dist/*
  1. The new version of the package should now be available in TestPyPI.
  2. Try installing the test package
pip install --index-url https://test.pypi.org/simple/ --no-deps dockershrink
  1. Create a new release in this repository
  2. Upload the package to PyPI
twine upload dist/*
  1. The new version of the package should now be available in PyPI

(Desired) ROADMAP :world_map:

Here is a list of things I'd like to add to dockershrink, hopefully with help from the community!

  1. Enable installation via brew (brew install dockershrink)
  2. Evaluate porting the whole codebase to Golang for easier binary distribution
  3. Resolve the TODOs inside the codebase
  4. Gather community feedback and make dockershrink rule engine more mature.
  5. Improve LLM Prompts
  6. Add more AI analysis rules
  7. Improve code quality (not required if we decide to port code to Go)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dockershrink-0.1.3.tar.gz (45.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dockershrink-0.1.3-py3-none-any.whl (47.6 kB view details)

Uploaded Python 3

File details

Details for the file dockershrink-0.1.3.tar.gz.

File metadata

  • Download URL: dockershrink-0.1.3.tar.gz
  • Upload date:
  • Size: 45.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.0

File hashes

Hashes for dockershrink-0.1.3.tar.gz
Algorithm Hash digest
SHA256 2a351323a7939f2535318f2a23e86537b6b85931458ba85ebec0f6ea04573719
MD5 8887cf7f91f5e67f4b8ce40cb151da85
BLAKE2b-256 baaf8809f3ef884729d0275a5688fc0042c9977c8d01d2e2a16d552fd32f4290

See more details on using hashes here.

File details

Details for the file dockershrink-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: dockershrink-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 47.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.0

File hashes

Hashes for dockershrink-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 676960860b43c4c6912d8b446a57cec8ee662ab29642a8cee04de3ac9c2cb2ee
MD5 152a6eec19411e7159357eb47a7ad4d2
BLAKE2b-256 c2a8ab8f0aed6dc3a355cbb618692cb52b240c04267e1f4bca7178bc292aedf9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page