add Dockerfile

This commit is contained in:
2021-02-11 20:11:52 +01:00
parent 3948bfeac6
commit 78c1ec4596
2 changed files with 29 additions and 0 deletions

View File

@@ -49,6 +49,15 @@ clean :
rm -vf $(EXE)
rm -vf *.o
#-----------------------------------------------------------------------------#
# Docker
docker-build :
docker build ./ --tag imctermite:0.1
docker-run:
docker run -it --rm imctermite:0.1 /bin/bash
# # build CLI executable
# $(EXE) : $(SRC)main.cpp $(LIB)raweat.hpp $(LIB)hexshow.hpp $(LIB)rawmerge.hpp output
# $(CCC) $(OPT) $< -o $@