19 lines
591 B
Docker
19 lines
591 B
Docker
FROM red/base-image:1.0.0
|
|
|
|
ARG PLATFORM_JAR
|
|
|
|
ENV PLATFORM_JAR ${PLATFORM_JAR}
|
|
|
|
ENV USES_ELASTICSEARCH false
|
|
|
|
COPY ["${PLATFORM_JAR}", "/"]
|
|
|
|
RUN apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
wget cabextract xfonts-utils fonts-liberation \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN curl http://ftp.br.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.7_all.deb -o /tmp/ttf-mscorefonts-installer_3.7_all.deb \
|
|
&& dpkg -i /tmp/ttf-mscorefonts-installer_3.7_all.deb \
|
|
&& rm /tmp/ttf-mscorefonts-installer_3.7_all.deb \
|