Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 296 Bytes

INSTRUCTIONS.md

File metadata and controls

8 lines (6 loc) · 296 Bytes

Buiding docker image

docker build -t project .

Running docker image

docker run --name=rubik -v $PWD/cpp:/usr/src/app/cpp -it --rm project bash -l

Buiding and Running docker image

docker build -t project . && docker run --name=rubik -v $PWD/cpp:/usr/src/app/cpp -it --rm project bash -l