Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile.bionic
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ RUN set -ex; \
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh

WORKDIR /usr/share/bcc/tools

ENTRYPOINT ["/entrypoint.sh"]
CMD ["/bin/bash"]
2 changes: 2 additions & 0 deletions Dockerfile.trusty
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ RUN set -ex; \
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh

WORKDIR /usr/share/bcc/tools

ENTRYPOINT ["/entrypoint.sh"]
CMD ["/bin/bash"]
2 changes: 2 additions & 0 deletions Dockerfile.xenial
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ RUN set -ex; \
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh

WORKDIR /usr/share/bcc/tools

ENTRYPOINT ["/entrypoint.sh"]
CMD ["/bin/bash"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ push.${1}:

.PHONY: run.${1}
run.${1}:
docker run -it --rm $(DOCKER_CAPS) $(DOCKER_VOLUMES) --workdir /usr/share/bcc/ $(REPO):${1}
docker run -it --rm $(DOCKER_CAPS) $(DOCKER_VOLUMES) $(REPO):${1}
endef #ADD_TARGET

.PHONY: build push
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ docker run -it --rm \
-v /lib/modules:/lib/modules:ro \
-v /usr/src:/usr/src:ro \
-v /etc/localtime:/etc/localtime:ro \
--workdir /usr/share/bcc/tools \
zlim/bcc
```

Expand Down