Sha256: f157cb9d85e86782fbf4e0a3d84fd7c9a343fa2f748766e77e9453fbe6a68dd9
Contents?: true
Size: 466 Bytes
Versions: 19
Compression:
Stored size: 466 Bytes
Contents
# There's an image at joevandyk/que-web. # Run like: # docker run -e DATABASE_URL=postgres://username:password@hostname/db_name -p 3002:8080 joevandyk/que-web FROM dockerfile/ruby # Define working directory. WORKDIR /app EXPOSE 8080 # Define default command. CMD bundle exec puma -e production -p 8080 /app/config.ru RUN apt-get update && \ apt-get install libpq-dev -y && \ rm -rf /var/cache/apt/* /var/lib/apt/lists/* ADD . /app RUN bundle install
Version data entries
19 entries across 19 versions & 1 rubygems