1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-26 05:27:31 +02:00
dockerfiles/tldextract/Dockerfile

14 lines
212 B
Docker
Raw Normal View History

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