commit 47c6b1f0821ed9b7366678aebf4a0e857210fa65 Author: Aditya Prima Date: Thu Oct 4 11:14:20 2018 +0700 Initial Commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3ce5a9b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM aprimediet/alpine-base:latest +LABEL maintainer=" aditya.prima@qti.co.id" + +# INSTALL REQUIRED DEPENDENCIES +RUN apk add --update --no-cache \ + nodejs nodejs-dev npm gzip + +# INSTALL YARN FOR JS PACKAGE MANAGER +RUN npm i -g yarn