Skip to content

Instantly share code, notes, and snippets.

View diligasi's full-sized avatar
🚀
Always learning...

Diogo de Lima Gama da Silva diligasi

🚀
Always learning...
View GitHub Profile
@diligasi
diligasi / Dockerfile.ci
Created August 7, 2023 19:25 — forked from dja/Dockerfile.ci
Codeship Rails on Jet
# Article for Dockerfile at ADD_URL_FOR_THIS
# We're using the Ruby 2.3.1 base container and extend it
FROM ruby:2.3.1
# We install certain OS packages necessary for running our build
# Node.js needs to be installed for compiling assets
# libpq-dev is necessary for installing the pg gem
# libmysqlclient-dev is necessary for installing the mysql2 gem
RUN apt-get update && \
apt-get install -yq \