From aa243a051393c620d0ed05b3873d580eaf6b09ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alja=C5=BE=20S?= Date: Sat, 28 Oct 2023 17:09:08 +0200 Subject: [PATCH] Fix dockerfile --- dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 0c95991..cee5e84 100644 --- a/dockerfile +++ b/dockerfile @@ -5,7 +5,8 @@ WORKDIR /app COPY package.json yarn.lock /app/ RUN yarn install -COPY public/ views/ /app/ +COPY public /app/public +COPY views /app/views COPY index.js /app/ CMD [ "yarn", "run", "start" ] \ No newline at end of file