58 lines
1.6 KiB
Docker
58 lines
1.6 KiB
Docker
# Docker/Kubernetes file for running the bot
|
|
|
|
FROM node:alpine
|
|
|
|
RUN apk --no-cache upgrade
|
|
RUN apk add --no-cache git msttcorefonts-installer python3 alpine-sdk ffmpeg \
|
|
zlib-dev libpng-dev libjpeg-turbo-dev freetype-dev fontconfig-dev \
|
|
libtool libwebp-dev libxml2-dev pango-dev freetype fontconfig \
|
|
vips vips-dev
|
|
|
|
# liblqr needs to be built manually for magik to work
|
|
# and because alpine doesn't have it in their repos
|
|
RUN git clone https://github.com/carlobaldassi/liblqr \
|
|
&& cd liblqr \
|
|
&& ./configure \
|
|
&& make \
|
|
&& make install
|
|
|
|
# install imagemagick from source rather than using the package
|
|
# since the alpine package does not include pango support.
|
|
RUN git clone https://github.com/ImageMagick/ImageMagick.git ImageMagick \
|
|
&& cd ImageMagick \
|
|
&& git checkout 7.0.10-45 \
|
|
&& ./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--enable-static \
|
|
--disable-openmp \
|
|
--with-threads \
|
|
--with-png \
|
|
--with-webp \
|
|
--with-modules \
|
|
--with-pango \
|
|
--without-hdri \
|
|
--with-lqr \
|
|
&& make \
|
|
&& make install
|
|
|
|
RUN update-ms-fonts && fc-cache -f
|
|
|
|
RUN adduser esmBot -s /bin/sh -D
|
|
WORKDIR /home/esmBot/.internal
|
|
|
|
COPY ./assets/caption.otf /usr/share/fonts/caption.otf
|
|
COPY ./assets/caption2.ttf /usr/share/fonts/caption2.ttf
|
|
COPY ./assets/hbc.ttf /usr/share/fonts/hbc.ttf
|
|
RUN fc-cache -fv
|
|
|
|
COPY --chown=node:node ./package.json package.json
|
|
COPY --chown=node:node ./package-lock.json package-lock.json
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
USER esmBot
|
|
|
|
ENTRYPOINT ["node", "app.js"]
|