From 650aa55c8f3f009cbf1d0f84f61a34f9767abd80 Mon Sep 17 00:00:00 2001 From: Cian Butler Date: Wed, 31 May 2017 14:15:37 +0100 Subject: [PATCH] remove build step --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2c969cf..97916c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ FROM node:boron MAINTAINER Nathan LeClaire ADD . /app WORKDIR /app -RUN apt-get update && apt-get upgrade -y && yarn install && yarn global add grunt && yarn build +RUN apt-get update && apt-get upgrade -y && yarn EXPOSE 3000 CMD yarn start