ich baue mir ein Dockerimage für Gimp 2.10. In dem Verzeichnis, indem das Dockerfile liegt, existiert ein Verzeichnis 'truetype' mit 500 ttf-Dateien.
Im Dockerfile versuche ich mit
Code: Alles auswählen
FROM debian:buster
RUN apt-get update && \
apt-get install -y locales
RUN sed -i -e 's/# de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LANG de_DE.UTF-8
ENV LANGUAGE de_DE:de
ENV LC_ALL de_DE.UTF-8
RUN apt-get install -y gtk2-engines-pixbuf && \
apt-get install -y gimp && \
apt-get install -y iso-codes
COPY truetype /etc/X11/fonts/
CMD /usr/bin/gimp
code]COPY truetype/Arial.ttf /etc/X11/fonts/[/code]
klappt auch nicht
Code: Alles auswählen
Step 7/9 : RUN apt-get install -y gtk2-engines-pixbuf && apt-get install -
y gimp && apt-get install -y iso-codes
---> Using cache
---> 0bd7b41f99aa
Step 8/9 : COPY truetype /etc/X11/fonts/
---> c8f693a1424d
Step 9/9 : CMD /usr/bin/gimp
---> Running in 917d251e352a
Code: Alles auswählen
cp truetype/* /etc/X11/fonts/
Grüße
BrotherJ