Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 595 Bytes

readme.md

File metadata and controls

39 lines (35 loc) · 595 Bytes

Makefile & multiple threads & network

  • done

    • Makefile
    • multiple threads
    • write to file
  • todo

    • network

run

  • build and run
    • make
    make
    • run
      ./bin/main
  • build and run in shell script
    • run
    ./run.sh
  • docker (base from ubuntu:23.04)
    • build base image
    docker build -t makefile_base:latest -f docker/Dockerfile-base .
    • build app image
    docker build -t makefile_app:latest -f docker/Dockerfile .
    • run
    docker run -it --rm makefile_app:latest