From 2fc18f6c60be9a68e775e6449597ed90408e5308 Mon Sep 17 00:00:00 2001 From: Bastian Meissner Date: Sun, 24 May 2020 23:23:40 +0200 Subject: [PATCH] Fixed Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3dd0609..5979a95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ COPY package.json . RUN [ "yarn", "install" ] -COPY data . -COPY src . -COPY public . +COPY data /app/data +COPY src /app/src +COPY public /app/public RUN [ "yarn", "build" ]