Sha256: a3f1d380186f76ff419f5163a67c754b0afd59d3c3afa2911436dfd4c7671291

Contents?: true

Size: 292 Bytes

Versions: 3

Compression:

Stored size: 292 Bytes

Contents

FROM ruby:2.7.2
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client

USER root

RUN mkdir /myapp
WORKDIR /myapp

COPY Gemfile /myapp/Gemfile
COPY Gemfile.lock /myapp/Gemfile.lock
RUN gem install bundler:2.1.4
RUN bundle
COPY . /myapp

EXPOSE 50051
CMD ["rake", "run_server"]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
souls-0.8.3 souls_service-0.0.8/Dockerfile
souls-0.8.2 souls_service-0.0.8/Dockerfile
souls-0.8.1 souls_service-0.0.8/Dockerfile