From a31c8356a23ece61632a8ae0a33ef0bf8ad839df Mon Sep 17 00:00:00 2001 From: simojenki Date: Sat, 13 Mar 2021 16:49:59 +1100 Subject: [PATCH] Dockerfile builds, not running tests --- Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0968d5b..175d93b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,13 +2,15 @@ FROM node:14.15-alpine as build WORKDIR /bonob -COPY package.json . -COPY yarn.lock . -COPY tsconfig.json . COPY src . +# COPY tests . +# COPY jest.config.js . +COPY package.json . +# COPY register.js . +COPY tsconfig.json . +COPY yarn.lock . RUN yarn install && \ - yarn test --no-cache && \ yarn build