text2image/Dockerfile
Vri 2733bb038f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add main.sh & fix packages
2024-12-03 22:33:42 +01:00

7 lines
219 B
Docker

FROM docker.io/alpine:latest
RUN apk add --no-cache imagemagick imagemagick-jpeg imagemagick-pango font-fira-code-nerd
RUN magick --version
RUN fc-cache -fv
RUN fc-list
COPY ./main.sh /app
ENTRYPOINT [ "/app/main.sh" ]