Created
October 14, 2019 19:31
-
-
Save yaredc/41f011d52b11b2bc94f847d7931d2a34 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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