We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6198cd commit 5c6d667Copy full SHA for 5c6d667
Dockerfile
@@ -16,8 +16,8 @@ RUN set -ex \
16
FROM node:12.16.1-alpine AS dashboard-build
17
WORKDIR /app/dashboard
18
19
-COPY ./dashboard/package.json ./dashboard/yarn.lock ./
20
-COPY ./schema.graphql ./codegen.yml ../
+COPY ./dashboard/package.json ./dashboard/yarn.lock ./dashboard/codegen.yml ./
+COPY ./schema.graphql ../
21
22
# We run yarn install with an increased network timeout (5min) to avoid "ESOCKETTIMEDOUT" errors from hub.docker.com
23
# See, for example https://github.com/yarnpkg/yarn/issues/5540
@@ -27,6 +27,7 @@ RUN set -ex \
27
COPY ./dashboard ./
28
29
RUN set -ex \
30
+ && yarn run generate \
31
&& yarn run build \
32
&& yarn run export
33
0 commit comments