### ### Build stage ### ### FROM ruby:3.0.6 AS builder RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - RUN apt-get update -qq && apt-get install -y nodejs postgresql-client RUN npm install -g yarn RUN gem install bundler -v 2.3 ENV APP_ROOT /astuto WORKDIR ${APP_ROOT} # Build as development by default, # unless --build-arg ENVIRONMENT=production is specificed ARG ENVIRONMENT ENV NODE_ENV=${ENVIRONMENT:-development} ENV RAILS_ENV=${ENVIRONMENT:-development} # Config bundler RUN if [ "$ENVIRONMENT" = "production" ]; then bundle config set deployment true --local; fi RUN if [ "$ENVIRONMENT" = "production" ]; then bundle config set without development test --local; fi # yarn is already configured by NODE_ENV # Copy Gemfile and install gems COPY Gemfile Gemfile.lock ${APP_ROOT}/ RUN bundle install # Copy package.json and install packages COPY package.json yarn.lock ${APP_ROOT}/ RUN yarn install --check-files # Copy all files COPY . ${APP_ROOT}/ # Compile assets if production # SECRET_KEY_BASE=1 is a workaround (see https://github.com/rails/rails/issues/32947) RUN if [ "$ENVIRONMENT" = "production" ]; then RAILS_ENV=development ./bin/rails assets:precompile; fi ### ### Dev stage ### ### FROM builder AS dev ENTRYPOINT ["./docker-entrypoint-dev.sh"] EXPOSE 3000 ### ### Prod stage ### ### FROM ruby:3.0.6-slim AS prod RUN apt-get update -qq && \ apt-get install -yq \ postgresql-client \ nodejs && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \ truncate -s 0 /var/log/*log RUN gem install bundler -v 2.3 ENV APP_ROOT /astuto WORKDIR ${APP_ROOT} # Copy gems, packages and compiled assets COPY --from=builder ${APP_ROOT}/vendor/bundle/ ${APP_ROOT}/vendor/bundle/ COPY --from=builder ${APP_ROOT}/node_modules/ ${APP_ROOT}/node_modules/ COPY --from=builder ${APP_ROOT}/public/ ${APP_ROOT}/public/ # Copy application code COPY --from=builder ${APP_ROOT}/app/ ${APP_ROOT}/app/ COPY --from=builder ${APP_ROOT}/bin/ ${APP_ROOT}/bin/ COPY --from=builder ${APP_ROOT}/config/ ${APP_ROOT}/config/ COPY --from=builder ${APP_ROOT}/db/ ${APP_ROOT}/db/ COPY --from=builder ${APP_ROOT}/spec/ ${APP_ROOT}/spec/ # Copy scripts and configuration files COPY --from=builder ${APP_ROOT}/docker-entrypoint.sh ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/docker-entrypoint-prod.sh ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/Gemfile ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/Gemfile.lock ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/.ruby-version ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/config.ru ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/Rakefile ${APP_ROOT}/ COPY --from=builder /usr/local/bundle/config /usr/local/bundle/config ENTRYPOINT ["./docker-entrypoint-prod.sh"] EXPOSE 3000