1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/tldextract/Dockerfile

14 lines
212 B
Docker
Raw Normal View History

2024-02-25 06:55:14 +02:00
#
# Dockerfile for tldextract
#
FROM alpine:3
2024-02-25 07:52:48 +02:00
RUN apk add --no-cache py3-pip \
&& pip install tldextract \
2024-02-25 06:55:14 +02:00
&& tldextract --update \
&& tldextract --version
ENTRYPOINT ["/usr/bin/tldextract"]
CMD ["--help"]