Skip to content

Instantly share code, notes, and snippets.

@jlandure
Created September 16, 2018 20:13
Show Gist options
  • Select an option

  • Save jlandure/34b3914d7c51e9c137931be928d63593 to your computer and use it in GitHub Desktop.

Select an option

Save jlandure/34b3914d7c51e9c137931be928d63593 to your computer and use it in GitHub Desktop.
apk command
RUN apk add --no-cache git
RUN apk add --no-cache --virtual .build-deps \
g++ \
make \
python \
&& npm --quiet install --global node-sass \
&& apk del .build-deps \
&& rm -rf /tmp/*
&& rm -rf /var/lib/apt/lists/* \
/var/cache/apk/* \
/usr/share/man \
/tmp/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment