From 8fab1e9f796fda3248586bc50c0c1ce4b87d7160 Mon Sep 17 00:00:00 2001 From: Ricardo Arturo Cabral Mejia Date: Sun, 13 Feb 2022 20:07:49 +0000 Subject: [PATCH] fix: fix paths on Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 488b66f..6142040 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,9 @@ FROM node:14-alpine as build WORKDIR /app -COPY index.html main.js package.json build.js /app/ +COPY public/index.html /app/public/index.html + +COPY main.js package.json build.js /app/ RUN yarn \ && yarn run build