Skip to content

Instantly share code, notes, and snippets.

@danrovito
Created September 1, 2021 18:45
Show Gist options
  • Save danrovito/ab8036dbfe0d8eaa16f3a40d4c1d2edb to your computer and use it in GitHub Desktop.
Save danrovito/ab8036dbfe0d8eaa16f3a40d4c1d2edb to your computer and use it in GitHub Desktop.
RUN curl -sS getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install -y nodejs
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update && apt-get install -y --no-install-recommends yarn \
&& npm install typescript -g --save-dev \
&& npm install parcel-bundler -g \
&& npm install sass -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment