Skip to content

Instantly share code, notes, and snippets.

View udkumar's full-sized avatar
🙂
Python || Ruby || AWS

uday kumar udkumar

🙂
Python || Ruby || AWS
  • Bridgeconn.com
  • New Delhi
View GitHub Profile
@udkumar
udkumar / Dockerfile
Created November 20, 2020 03:13 — forked from JulienBreux/Dockerfile
Docker + Rails + Redis + Postgres
# base on latest ruby base image
FROM ruby:latest
# update and install dependencies
RUN apt-get update -qq
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential libpq-dev nodejs apt-utils postgresql-client
# setup app folders
RUN mkdir /sample
WORKDIR /sample