Dockerignore: Ignore everything except a file and the Dockerfile

Docker

Docker Problem Overview


So the main intention was to dockerize a fat jar application and put it into Elasticbeanstalk. The problem is with the context. It's a little bit stupid to add so much context into docker if all I need is actually a single jar file.

I've been playing around with the .dockerignore file, but I am lost. I tried to use the gitignore negation, but it doesn't work.

*
!Dockerfile
*/
!target/
target/*
!target/*.jar

There's also that thing with regex, but it seems like complicated regex is not supported.

^((?!Dockerfile).)*$

I have also tried searching in stackoverflow, and these two are all I found:

This question might be similiar to the second one, but I think it's slightly difference since in here, I just want to include a single file into the context.

Any help will be appreciated.

Docker Solutions


Solution 1 - Docker

If you need to ignore everything except some directories or files and also ignore some unnecessary files inside those allowed directories you can use the following .dockerignore file:

# Ignore everything
**

# Allow files and directories
!/file.txt
!/src/**

# Ignore unnecessary files inside allowed directories
# This should go after the allowed directories
**/*~
**/*.log
**/.DS_Store
**/Thumbs.db

Solution 2 - Docker

From the dockerfile reference:

> Beyond Go’s filepath.Match rules, Docker also supports a special wildcard string ** that matches any number of directories (including zero). For example, **/*.go will exclude all files that end with .go that are found in all directories, including the root of the build context.

So a line containing simply ** will ignore everything in the same directory as the Dockerfile.

As expected the exclamation can then be used to reference any files you do wish to send to the docker daemon.

Solution 3 - Docker

This may sound strange, but if all you need is a single jar file, you could create a "docker" folder in your build system that contains your Dockerfile. When you run your builds, have the build scripts copy the single jar file into "docker" then execute the docker image build (from inside the "docker" folder) and push to your docker registry when done.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRowantoView Question on Stackoverflow
Solution 1 - DockerMauricio SánchezView Answer on Stackoverflow
Solution 2 - DockerabraundView Answer on Stackoverflow
Solution 3 - DockerJay AtkinsonView Answer on Stackoverflow