Sha256: 2cb6c2d8cda064d90d691ad927bcfb7c17d5c83dbc048609513aef3cac06a0bd

Contents?: true

Size: 355 Bytes

Versions: 1

Compression:

Stored size: 355 Bytes

Contents

FROM ruby:2.5

# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1

WORKDIR /app

COPY . .
RUN bundle install -j 8

ENV mongo_database kriterion
ENV mongo_hostname mongodb
ENV mongo_port 27017
ENV queue reports
ENV uri http://restmq:8888

ENTRYPOINT ["bundle", "exec", "kriterion", "worker"]
CMD ["--debug"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kriterion-0.0.1 Dockerfile