mrmBot-Matrix/Dockerfile

71 lines
1.9 KiB
Docker
Raw Normal View History

# Docker/Kubernetes file for running the bot
2022-08-11 05:42:39 +00:00
#FROM node:alpine
FROM alpine:edge
RUN apk --no-cache upgrade
2022-03-08 23:42:30 +00:00
RUN apk add --no-cache git cmake msttcorefonts-installer python3 alpine-sdk ffmpeg wget rpm2cpio \
zlib-dev libpng-dev libjpeg-turbo-dev freetype-dev fontconfig-dev \
2022-06-18 00:44:29 +00:00
libtool libwebp-dev libxml2-dev freetype fontconfig \
2022-08-11 05:42:39 +00:00
vips vips-dev grep libc6-compat nodejs-current nodejs-current-dev npm
2022-06-18 00:44:29 +00:00
# install pnpm
RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store \
npm install -g pnpm@6.27.1
# liblqr needs to be built manually for magick 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
2022-06-18 00:44:29 +00:00
# since the alpine package does not include liblqr support.
RUN git clone https://github.com/ImageMagick/ImageMagick.git ImageMagick \
&& cd ImageMagick \
&& ./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
USER esmBot
WORKDIR /home/esmBot/.internal
COPY --chown=esmBot:esmBot ./package.json package.json
COPY --chown=esmBot:esmBot ./pnpm-lock.yaml pnpm-lock.yaml
2022-06-18 00:44:29 +00:00
RUN pnpm install
COPY . .
2021-09-13 18:05:22 +00:00
RUN rm .env
2022-06-18 00:44:29 +00:00
RUN pnpm run build
2022-06-18 00:44:29 +00:00
RUN mkdir /home/esmBot/help \
&& chown esmBot:esmBot /home/esmBot/help \
&& chmod 777 /home/esmBot/help
2022-06-18 00:44:29 +00:00
RUN mkdir /home/esmBot/temp \
&& chown esmBot:esmBot /home/esmBot/temp \
&& chmod 777 /home/esmBot/temp
2022-06-18 00:44:29 +00:00
RUN mkdir /home/esmBot/.internal/logs \
&& chown esmBot:esmBot /home/esmBot/.internal/logs \
&& chmod 777 /home/esmBot/.internal/logs
2022-02-23 01:44:13 +00:00
ENTRYPOINT ["node", "app.js"]