osem-fcy/Dockerfile.production
2021-10-14 17:52:26 +02:00

20 lines
493 B
Text

FROM registry.opensuse.org/opensuse/infrastructure/dale/containers/osem/base:latest
# Install bundler & foreman
RUN gem install bundler:1.17.3 foreman
# Add our files
COPY --chown=1000:1000 . /osem/
USER osem
WORKDIR /osem/
# Install our bundle
RUN export NOKOGIRI_USE_SYSTEM_LIBRARIES=1; bundle install --jobs=3 --retry=3 --without test development
# Generate assets
RUN export RAILS_ENV=production; bundle exec rake assets:precompile
ENV RAILS_ENV=production
CMD ["foreman", "start"]