mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
- add a big fat warning - Do not mentioned the deprecated docker setup anymore - Fixup docker-compose production setup
17 lines
371 B
Text
17 lines
371 B
Text
FROM osem/base
|
|
|
|
# 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:clobber assets:precompile
|
|
|
|
ENV RAILS_ENV=production
|
|
|
|
CMD ["foreman", "start"]
|