mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01:00
20 lines
499 B
Docker
20 lines
499 B
Docker
FROM ruby:2.5
|
|
RUN curl -sL https://deb.nodesource.com/setup_9.x | bash - && apt-get update && \
|
|
apt-get install -y build-essential zlib1g-dev libsqlite3-dev nodejs npm \
|
|
libxml2-dev libxslt1-dev pkg-config \
|
|
libqtwebkit4 libqtwebkit-dev libqt4-dev xvfb
|
|
|
|
RUN mkdir -p /app
|
|
|
|
WORKDIR /tmp
|
|
|
|
COPY Gemfile Gemfile
|
|
COPY Gemfile.lock Gemfile.lock
|
|
RUN bundle config build.nokogiri --use-system-libraries
|
|
RUN bundle install
|
|
|
|
ADD . /app
|
|
WORKDIR /app
|
|
|
|
EXPOSE 3000
|
|
CMD ["rails", "server", "-b", "0.0.0.0"]
|