mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00
17 lines
563 B
Docker
17 lines
563 B
Docker
# Toolbox container for debugging
|
|
# Run as:
|
|
# docker run -it --rm --entrypoint sh planetmint/toolbox
|
|
# kubectl run -it toolbox --image planetmint/toolbox --restart=Never --rm
|
|
|
|
FROM alpine:3.5
|
|
LABEL maintainer "contact@ipdb.global"
|
|
WORKDIR /
|
|
RUN apk add --no-cache --update curl bind-tools python3-dev g++ \
|
|
libffi-dev make vim git nodejs openssl-dev \
|
|
&& pip3 install ipython \
|
|
&& git clone https://github.com/planetmint/planetmint-driver \
|
|
&& cd planetmint-driver \
|
|
&& pip3 install -e . \
|
|
&& npm install -g wsc
|
|
ENTRYPOINT ["/bin/sh"]
|