text2image/Dockerfile

8 lines
219 B
Text
Raw Normal View History

2024-12-02 23:18:00 +01:00
FROM docker.io/alpine:latest
2024-12-03 22:33:42 +01:00
RUN apk add --no-cache imagemagick imagemagick-jpeg imagemagick-pango font-fira-code-nerd
2024-12-02 23:18:00 +01:00
RUN magick --version
2024-12-03 01:05:01 +01:00
RUN fc-cache -fv
RUN fc-list
2024-12-03 22:33:42 +01:00
COPY ./main.sh /app
ENTRYPOINT [ "/app/main.sh" ]