Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 325 Bytes

File metadata and controls

11 lines (10 loc) · 325 Bytes

Docker commands for local development

Docker build

docker build --no-cache --build-arg SPRING_PROFILE=bdc-dev -t weights:latest .

Docker run

You will need a local weights.csv file.

    docker run --rm -t --name dictionary-weights --network=host -v ./weights.csv:/weights.csv weights:latest