mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
13 lines
298 B
Docker
13 lines
298 B
Docker
# Toolbox container for debugging
|
|
# Run as:
|
|
# docker run -it --rm --entrypoint sh bigchaindb/toolbox
|
|
# kubectl run -it toolbox --image bigchaindb/toolbox --restart=Never --rm
|
|
|
|
FROM alpine:3.5
|
|
MAINTAINER github.com/krish7919
|
|
WORKDIR /
|
|
|
|
RUN apk add --no-cache curl bind-tools
|
|
|
|
ENTRYPOINT ["/bin/sh"]
|