From 19a298d7f6ed515ab543b2a6ca3ab5fc22c50774 Mon Sep 17 00:00:00 2001 From: Matt Rider Date: Wed, 9 Jan 2019 19:36:37 -0200 Subject: [PATCH] Add back static and plugins copy from build and test --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1affdf80f..8f8b8a8c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,8 @@ ENV NODE_ENV=production RUN yarn install --frozen-lockfile --non-interactive COPY --from=build-and-test ./nitro-web/.nuxt ./.nuxt COPY --from=build-and-test ./nitro-web/styleguide/dist ./styleguide/dist +COPY --from=build-and-test ./nitro-web/plugins ./plugins +COPY --from=build-and-test ./nitro-web/static ./static EXPOSE 3000 CMD ["yarn", "run", "start"]