From 0a458420ea9f12c6ece12cf53425bf4f0e522699 Mon Sep 17 00:00:00 2001 From: Heds Simons Date: Thu, 29 Aug 2019 13:04:25 +0100 Subject: [PATCH] Update Dockerfile to remove extraneous COPY. Signed-off-by: Heds Simons --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f50d941..93aac29d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,5 @@ FROM base # Copy built code COPY --from=build /usr/src/app/build /usr/src/app/build -COPY --from=build /usr/src/app/bin /usr/src/app/bin COPY --from=build /usr/src/app/config /usr/src/app/config -COPY --from=base /usr/src/app/node_modules /usr/src/app/node_modules +COPY --from=build /usr/src/app/bin /usr/src/app/bin