2023-04-12 15:18:20 +02:00
FROM ruby:3.2.2-alpine
2020-11-25 11:39:53 +01:00
MAINTAINER contact@fab-manager.com
2016-03-23 18:39:41 +01:00
2019-09-12 01:38:20 +02:00
# Install upgrade system packages
RUN apk update && apk upgrade && \
# Install runtime apk dependencies
2019-09-23 08:57:02 +02:00
apk add --update \
bash \
curl \
2016-03-23 18:39:41 +01:00
nodejs \
2019-09-12 01:38:20 +02:00
yarn \
2022-03-23 11:07:07 +01:00
git \
openssh \
2019-09-12 01:38:20 +02:00
imagemagick \
2018-11-22 17:09:14 +01:00
supervisor \
2019-09-12 01:38:20 +02:00
tzdata \
libc-dev \
ruby-dev \
zlib-dev \
2022-10-12 18:50:59 +02:00
xz \
2019-09-12 01:38:20 +02:00
xz-dev \
postgresql-dev \
2020-06-29 10:54:42 +02:00
postgresql-client \
2019-09-12 01:38:20 +02:00
libxml2-dev \
libxslt-dev \
2022-05-12 10:33:41 +02:00
libsass-dev \
libsass \
libc6-compat \
2019-09-12 01:38:20 +02:00
libidn-dev && \
# Install buildtime apk dependencies
2019-09-23 08:57:02 +02:00
apk add --update --no-cache --virtual .build-deps \
alpine-sdk \
2019-09-12 01:38:20 +02:00
build-base \
linux-headers \
patch
2022-05-12 10:33:41 +02:00
# Fix bug: LoadError: Could not open library '/usr/local/bundle/gems/sassc-2.1.0-x86_64-linux/lib/sassc/libsass.so': Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by /usr/local/bundle/gems/sassc-2.1.0-x86_64-linux/lib/sassc/libsass.so)
# add libsass-dev libsass libc6-compat and env below
ENV LD_LIBRARY_PATH = /lib64
2020-05-18 11:08:06 +02:00
RUN gem install bundler
2019-09-12 01:38:20 +02:00
# Throw error if Gemfile has been modified since Gemfile.lock
2016-03-23 18:39:41 +01:00
RUN bundle config --global frozen 1
2019-09-12 01:38:20 +02:00
# Install gems in a cache efficient way
2016-03-23 18:39:41 +01:00
WORKDIR /tmp
2022-06-08 10:14:47 +02:00
COPY Gemfile* /tmp/
2022-06-06 10:23:43 +02:00
RUN bundle config set --local without 'development test doc' && bundle install && bundle binstubs --all
2016-03-23 18:39:41 +01:00
2022-06-07 16:57:24 +02:00
# Prepare the application directories
2022-06-08 09:33:09 +02:00
RUN mkdir -p /var/log/supervisor && \
mkdir -p /usr/src/app/tmp/sockets && \
2022-06-08 20:56:51 +02:00
mkdir -p /usr/src/app/tmp/pids && \
mkdir -p /usr/src/app/tmp/cache && \
2022-06-13 14:11:43 +02:00
mkdir -p /usr/src/app/log && \
2022-06-23 11:34:16 +02:00
mkdir -p /usr/src/app/node_modules && \
2022-06-27 09:31:42 +02:00
mkdir -p /usr/src/app/public/api && \
2022-06-23 11:34:16 +02:00
chmod -R a+w /usr/src/app && \
2022-06-14 15:38:28 +02:00
chmod -R a+w /var/run
2022-06-06 17:23:02 +02:00
2019-09-12 01:38:20 +02:00
# Install Javascript packages
WORKDIR /usr/src/app
COPY package.json /usr/src/app/package.json
COPY yarn.lock /usr/src/app/yarn.lock
2020-10-06 09:08:56 +02:00
RUN yarn install
2018-11-22 17:09:14 +01:00
2019-09-12 01:38:20 +02:00
# Clean up build deps, cached packages and temp files
RUN apk del .build-deps && \
yarn cache clean && \
rm -rf /tmp/* \
/var/tmp/* \
/var/cache/apk/* \
2022-06-23 11:34:16 +02:00
/usr/lib/ruby/gems/*/cache/* && \
chmod -R a+w /usr/src/app/node_modules
2016-03-23 18:39:41 +01:00
2022-06-07 15:12:07 +02:00
# Copy source files
2016-03-23 18:39:41 +01:00
COPY docker/database.yml /usr/src/app/config/database.yml
COPY . /usr/src/app
2022-06-07 15:12:07 +02:00
# Volumes (the folders are created by setup.sh)
2022-06-08 10:14:47 +02:00
VOLUME /usr/src/app/invoices \
/usr/src/app/payment_schedules \
/usr/src/app/exports \
/usr/src/app/imports \
/usr/src/app/public \
/usr/src/app/public/uploads \
/usr/src/app/public/packs \
/usr/src/app/accounting \
2023-02-13 17:31:57 +01:00
/usr/src/app/supporting_document_files \
2022-06-08 10:14:47 +02:00
/var/log/supervisor
2016-03-23 18:39:41 +01:00
2019-09-12 01:38:20 +02:00
# Expose port 3000 to the Docker host, so we can access it from the outside
2016-09-06 12:19:47 +02:00
EXPOSE 3000
2016-03-23 18:39:41 +01:00
2019-09-12 01:38:20 +02:00
# The main command to run when the container starts. Also tell the Rails server
# to bind to all interfaces by default.
2022-06-08 09:33:09 +02:00
COPY docker/supervisor.conf /etc/supervisor/conf.d/fabmanager.conf
CMD [ "/usr/bin/supervisord" , "-c" , "/etc/supervisor/conf.d/fabmanager.conf" ]