Skip to content

Commit 2307cf9

Browse files
Revert "build(test/travis-docker): Use sudo with Docker"
This reverts commit df6f835.
1 parent bab6a8d commit 2307cf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

travis/docker/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ Dockerfile: FORCE
1212

1313
shell bash: image
1414
@echo Running interactive shell
15-
sudo docker run -it --privileged --net=host --hostname localhost \
15+
docker run -it --privileged --net=host --hostname localhost \
1616
--ulimit core=-1:-1 \
1717
--mount type=bind,source="$(ROOT)",target=/home/pwntools/pwntools \
1818
--entrypoint ./tmux.sh \
1919
travis
2020

2121
doctest3: image FORCE
2222
@echo Running doctests
23-
sudo docker run -it --privileged --net=host --hostname localhost \
23+
docker run -it --privileged --net=host --hostname localhost \
2424
--ulimit core=-1:-1 \
2525
--mount type=bind,source="$(ROOT)",target=/home/pwntools/pwntools \
2626
--env TARGET=$(TARGET) \
2727
--entrypoint ./$@ \
2828
travis
2929

3030
image: Dockerfile
31-
sudo docker build -t travis .
31+
docker build -t travis .
3232

3333
FORCE:
3434
.PHONY: all image doctest3 bash

0 commit comments

Comments
 (0)