scinote-web/Dockerfile

46 lines
1 KiB
Docker
Raw Permalink Normal View History

FROM ruby:3.2.5-bookworm
MAINTAINER SciNote <info@scinote.net>
2016-02-12 23:52:43 +08:00
# additional dependecies
# libreoffice for file preview generation
RUN apt-get update -qq && \
apt-get install -y --no-install-recommends \
libjemalloc2 \
libssl-dev \
nodejs \
postgresql-client \
default-jre-headless \
poppler-utils \
2019-09-12 23:21:48 +08:00
librsvg2-2 \
libvips42 \
graphviz \
libreoffice \
fonts-droid-fallback \
fonts-noto-mono \
fonts-wqy-microhei \
fonts-wqy-zenhei \
libfile-mimeinfo-perl \
chromium \
chromium-sandbox \
yarnpkg && \
2019-09-12 23:21:48 +08:00
ln -s /usr/lib/x86_64-linux-gnu/libvips.so.42 /usr/lib/x86_64-linux-gnu/libvips.so && \
rm -rf /var/lib/apt/lists/*
2016-02-12 23:52:43 +08:00
ENV PATH=/usr/share/nodejs/yarn/bin:$PATH
RUN yarn add puppeteer@npm:puppeteer-core
2017-04-21 21:13:20 +08:00
ENV BUNDLE_PATH /usr/local/bundle/
2016-02-12 23:52:43 +08:00
# create app directory
ENV APP_HOME /usr/src/app
ENV PATH $APP_HOME/bin:$PATH
2016-02-12 23:52:43 +08:00
RUN mkdir $APP_HOME
RUN adduser --uid 1000 scinote
RUN chown scinote:scinote $APP_HOME
USER scinote
ENV CHROMIUM_PATH /usr/bin/chromium
2016-02-12 23:52:43 +08:00
WORKDIR $APP_HOME
CMD rails s -b 0.0.0.0