Sha256: 210bb8c04dde4f33f3b9c00392425897ff1fedfef2f82ceda166bd703ce3ee10
Contents?: true
Size: 270 Bytes
Versions: 4
Compression:
Stored size: 270 Bytes
Contents
FROM ruby:2.5-alpine RUN apk update && apk add build-base nodejs postgresql-dev RUN mkdir /app WORKDIR /app COPY Gemfile Gemfile.lock ./ RUN bundle install --binstubs COPY . . LABEL maintainer="Nick Janetakis <nick.janetakis@gmail.com>" CMD puma -C config/puma.rb
Version data entries
4 entries across 4 versions & 1 rubygems