feat(docker): reduce image size #363
Open
+62
−15
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix for #322
Changes
First commit: Add a .dockerignore file which allows not to take useless folders and files in the docker image.
Allow to reduce the image size from 596 MB to 524 MB.
Second commit: Write Dockerfile in order to reduce amount of copied files. Also add function in main.py to find location of pyproject.toml so it does not break local uvicorn and docker run executions.
Allow to reduce the image size to 460 MB.
Tests
Tested after creating a new build using
make docker-build
Tested using uvicorn
uvicorn boaviztapi.main:app --host=localhost --port 5000 INFO: Started server process [1133308] INFO: Waiting for application startup. INFO: Application startup complete. INFO: Uvicorn running on http://localhost:5000 (Press CTRL+C to quit)