mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-02-03 13:21:35 +02:00
13 lines
190 B
Docker
13 lines
190 B
Docker
#
|
|
# Dockerfile for tldextract
|
|
#
|
|
|
|
FROM alpine:3
|
|
|
|
RUN apk add --no-cache py3-tldextract \
|
|
&& tldextract --update \
|
|
&& tldextract --version
|
|
|
|
ENTRYPOINT ["/usr/bin/tldextract"]
|
|
CMD ["--help"]
|