This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |