Sha256: dc7d6b95e3271a532fd3b3c850e561ab5fab51ef298f80ad015ee6673cc11214

Contents?: true

Size: 275 Bytes

Versions: 4

Compression:

Stored size: 275 Bytes

Contents

FROM ruby:3.0.1

RUN apt-get update -qq && apt-get install -y nodejs redis-server 

USER root

RUN mkdir /myapp
WORKDIR /myapp

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

CMD ["foreman", "start"]

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
souls-0.24.2 apps/api/Dockerfile
souls-0.24.2 apps/worker/Dockerfile
souls-0.24.1 apps/api/Dockerfile
souls-0.24.1 apps/worker/Dockerfile