X-Git-Url: https://git.r.bdr.sh/rbdr/dasein/blobdiff_plain/cc69fef4b7e1587a91a0603d4bd1a46d0b133dd5..a3f9e2603dfdf8c492ec0dc355cd434fc6100f06:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 38d991a..85d78c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:6.9.2 +FROM node:6.9.4 RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb http://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list @@ -11,4 +11,6 @@ COPY yarn.lock /app/ RUN yarn install COPY . /app +RUN npm run build + ENTRYPOINT [ "node", "bin/dasein" ])