1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/tldextract/Dockerfile

14 lines
212 B
Docker
Raw Normal View History

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