Skip to content

Instantly share code, notes, and snippets.

@yaredc
Created October 14, 2019 19:31
Show Gist options
  • Save yaredc/41f011d52b11b2bc94f847d7931d2a34 to your computer and use it in GitHub Desktop.
Save yaredc/41f011d52b11b2bc94f847d7931d2a34 to your computer and use it in GitHub Desktop.
FROM node:12.11.1-alpine
ENV ENVIRONMENT="production" \
DOCROOT="/var/www/html"
LABEL maintainer="[email protected]" \
product="app.node"
RUN apk add --no-cache --virtual .deps g++ gcc libgcc libstdc++ linux-headers make python &&\
npm install -g node-gyp less sass &&\
apk del .deps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment