Skip to content
Snippets Groups Projects
Commit d8a4cbbd authored by jkerdreu's avatar jkerdreu
Browse files

Docker won't work in it mode from Makefile


git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/branches/0.7@2831 b32b6428-25c9-4566-ad07-03861ab6144f
parent 1017b61d
No related branches found
No related tags found
No related merge requests found
VER=latest
NAME=xaal-debian
all:test
build:
docker build -t $(NAME):$(VER) .
run: build
docker run -it --rm $(NAME):$(VER)
test:build run
docker rmi $(NAME)
#!/bin/sh
VER=latest
NAME=xaal-debian
docker build -t ${NAME}:${VER} .
docker run -it --rm ${NAME}:${VER}
docker rmi ${NAME}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment