1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:27 +02:00
dockerfiles/visidata/Dockerfile

16 lines
284 B
Docker
Raw Permalink Normal View History

2024-12-03 14:24:20 +08:00
#
# Dockerfile for visidata
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache python3 py3-pip \
&& pip3 config set global.break-system-packages true \
&& pip3 install visidata \
&& visidata --version \
&& vd --version
ENTRYPOINT ["vd"]