1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/visidata/Dockerfile

16 lines
284 B
Docker
Raw Normal View History

2024-12-03 08:24:20 +02: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"]