23 lines
547 B
Docker
23 lines
547 B
Docker
FROM ruby:3.2.2-slim
|
|
|
|
RUN apt-get update -qq && apt-get install -y build-essential libsqlite3-dev openssl libffi-dev libpq-dev
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY Gemfile* ./
|
|
|
|
RUN bundle config set without 'development test' && bundle install
|
|
|
|
COPY . .
|
|
|
|
RUN rm -f db/development*
|
|
|
|
EXPOSE 9292
|
|
|
|
ENV RACK_ENV=production
|
|
ENV TUDUDI_INTERNAL_SSL_ENABLED=false
|
|
|
|
RUN mkdir -p certs && \
|
|
openssl req -x509 -newkey rsa:4096 -keyout certs/server.key -out certs/server.crt -days 365 -nodes -subj '/CN=localhost'
|
|
|
|
CMD rake db:migrate; puma -C app/config/puma.rb
|