Sha256: 2f2415f4a1f6cddc0656ce31c01702466057d9041dc6fd658ea237c5f9e7e216
Contents?: true
Size: 309 Bytes
Versions: 2
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 4000 CMD ["foreman", "start", "-f", "Procfile.dev"]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
souls-0.24.2 | apps/api/Dockerfile.dev |
souls-0.24.1 | apps/api/Dockerfile.dev |