Skip to content

Instantly share code, notes, and snippets.

View justinwjoyce's full-sized avatar

Justin Joyce justinwjoyce

View GitHub Profile
@justinwjoyce
justinwjoyce / Dockerfile
Created April 6, 2018 16:04 — forked from RoyalIcing/Dockerfile
Rails 5.1 Dockerfile
FROM ruby:2.4-alpine
ENV PATH /root/.yarn/bin:$PATH
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh build-base nodejs tzdata
RUN apk update \
&& apk add curl bash binutils tar gnupg \
&& rm -rf /var/cache/apk/* \