Skip to content

Commit

Permalink
figlet
Browse files Browse the repository at this point in the history
  • Loading branch information
Tob1as committed Apr 6, 2021
1 parent 0b67341 commit 82cf73d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions figlet.multiarch.alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
FROM alpine:latest

SHELL ["/bin/sh", "-euxo", "pipefail", "-c"]

ARG VCS_REF
ARG BUILD_DATE

LABEL org.opencontainers.image.title="figlet" \
org.opencontainers.image.authors="Tobias Hargesheimer <docker@ison.ws>" \
#org.opencontainers.image.version="2.2.5" \
org.opencontainers.image.created="${BUILD_DATE}" \
org.opencontainers.image.revision="${VCS_REF}" \
org.opencontainers.image.description="http://www.figlet.org/ | docker run --rm --name figlet -it tobi312/tools:figlet 'Hello :D'" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.url="https://hub.docker.com/r/tobi312/tools" \
org.opencontainers.image.source="https://github.com/Tob1asDocker/tools"

RUN apk --no-cache add figlet figlet-doc \
; \
for fonts in \
contributed \
international \
ms-dos \
ours \
; \
do \
wget -qO- ftp://ftp.figlet.org/pub/figlet/fonts/${fonts}.tar.gz | tar xvz -C /usr/share/figlet/fonts/ \
; \
done

ENTRYPOINT ["figlet"]
CMD ["--help"]

0 comments on commit 82cf73d

Please sign in to comment.