From cca09415c3625c59d55eaebab7e5e85cac46a00e Mon Sep 17 00:00:00 2001 From: Matt Rider Date: Wed, 9 Jan 2019 19:14:38 -0200 Subject: [PATCH] Fix copy path --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index afba80104..a50e03715 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,14 +18,13 @@ RUN yarn install --production=false --frozen-lockfile --non-interactive RUN cd styleguide && yarn install --production=false --frozen-lockfile --non-interactive \ && cd .. \ && yarn run styleguide:build -COPY . . RUN yarn run build FROM base as production 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 ./styleguide/dist ./styleguide/dist +COPY --from=build-and-test ./nitro-web/styleguide/dist ./styleguide/dist EXPOSE 3000 CMD ["yarn", "run", "start"]