From a5117e70ecc5f962bf9cde45746900f423d1df78 Mon Sep 17 00:00:00 2001 From: Dwight Spencer Date: Fri, 12 Jul 2019 16:07:51 -0500 Subject: [PATCH] Create Dockerfile - Added initial dockerfile structure to stand up a service --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..2689ba88 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:latest +# <"" | "all" | "lite"> + +ARG EDITION="lite" +ENV EDITION $EDITION +EXPOSE 3000 + +COPY ./ /app +WORKDIR /app +RUN npm install -g grunt && npm install && grunt ${EDITON} +CMD npm start