Sha256: bd74e5be202037909e02ac4f729894060a7ae180a35b9e75389c278ba1a590ac
Contents?: true
Size: 309 Bytes
Versions: 4
Compression:
Stored size: 309 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.23 RUN bundle COPY . /myapp EXPOSE 3000 CMD ["foreman", "start", "-f", "Procfile.dev"]
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
souls-0.24.2 | apps/worker/Dockerfile.dev |
souls-0.24.1 | apps/worker/Dockerfile.dev |
souls-0.22.8 | hoy/Dockerfile.dev |
souls-0.22.7 | hoy/Dockerfile.dev |