In the project root directory execute the command:
export DOCKER_BUILDKIT=1
docker build -t akrisanov/dataset-catalog:<VERSION> . --no-cache
I'm using Artifactory here.
First, authenticate your account with credentials:
docker login https://[repository-name].[organization].com
Then, find a tag of your release image, tag it with a proper name of the private Docker registry, and push it to the repository:
docker images | head
docker tag <IMAGE_ID> [repository-name].[organization].com/dataset-catalog:<VERSION>
docker push [repository-name].[organization].com/dataset-catalog:<VERSION>