From 99ded87dc4f815748d7b38033153ee0b38db2617 Mon Sep 17 00:00:00 2001 From: aeddi Date: Mon, 1 Oct 2018 10:33:43 +0200 Subject: [PATCH] fix(web): fixed bertychat/web docker image generation and added new folders in dockerignore --- client/react-native/.dockerignore | 2 ++ client/react-native/Dockerfile | 1 + 2 files changed, 3 insertions(+) diff --git a/client/react-native/.dockerignore b/client/react-native/.dockerignore index 405a8546e1..8f2209b9a0 100644 --- a/client/react-native/.dockerignore +++ b/client/react-native/.dockerignore @@ -3,3 +3,5 @@ web/node_modules common/node_modules gomobile mobile +fastlane +patch diff --git a/client/react-native/Dockerfile b/client/react-native/Dockerfile index 2e9c93fbb9..1fd43ea597 100644 --- a/client/react-native/Dockerfile +++ b/client/react-native/Dockerfile @@ -16,6 +16,7 @@ RUN echo "@testing http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/ apk update && apk add --no-cache watchman@testing # Install common dependencies +COPY common/schema.graphql /usr/src/app/common/schema.graphql COPY package.json /usr/src/app/package.json COPY yarn.lock /usr/src/app/yarn.lock RUN cd /usr/src/app && yarn --silent