Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 292 Bytes

README.md

File metadata and controls

4 lines (3 loc) · 292 Bytes

Build and run c++ from dockerfile

  • build: docker build -t cpp-env . to build + tag the image. see Dockerfile. the dockerfile copies the contents of this dir to the conatainer's then runs g++ to compile the source to an executeables
  • to run interactively: docker run -it --rm cpp-env