Adding three new make file targets, make docker-build, make docker-run and make docker for convenience in building and running the docker image of the project.
Fixes #49
Current status
[ ] Waiting for review
[x] Waiting for comment resolution
[ ] Waiting for merge
[ ] Draft
Semantic Versioning
This is a feat change
Type of change
New feature (non-breaking change which adds functionality)
How Has This Been Tested?
Manual
Navigate to the project directory in the terminal
Enter make docker-build
Verify that a new image is created in docker desktop
Change the REGISTRY_IMAGE_NAME variable in the make file
Re-run make docker-build
Verify that the new image is tagged with the updated variable
Enter make docker-run
Ensure that the image is used in a container that runs
Enter make docker
Ensure that the docker image is made and a container is run with the image
Checklist:
[x] My commit message mentions fix, feat, BREAKING CHANGE accordingly to increase the semantic versioning
[x] My code follows the style guidelines of this project
[x] I have performed a self-review of my own code
[x] I have commented my code, particularly in hard-to-understand areas
[x] I have made corresponding changes to the documentation
[x] I have checked my code/docs and corrected any misspellings
Description
Adding three new make file targets,
make docker-build
,make docker-run
andmake docker
for convenience in building and running the docker image of the project.Fixes #49
Current status
Semantic Versioning
feat
changeType of change
How Has This Been Tested?
Manual
make docker-build
REGISTRY_IMAGE_NAME
variable in the make filemake docker-build
make docker-run
make docker
Checklist: