From d9418b08ef8e633d3175df64141858f51ccbe6e0 Mon Sep 17 00:00:00 2001 From: core Date: Sat, 13 May 2023 18:25:00 -0400 Subject: [PATCH] fix assets not getting copied into the docker container - didnt work try again --- web.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.Dockerfile b/web.Dockerfile index ff735426784bfd5d565da8f574a0c71dd7929b5c..221b2f18c688178eeca80bff6d332686d25747f3 100644 --- a/web.Dockerfile +++ b/web.Dockerfile @@ -10,5 +10,5 @@ RUN cd /client && yarn build FROM nginx COPY --from=0 /client/dist /usr/share/nginx/html -COPY assets /usr/share/nginx/html +COPY assets/ /usr/share/nginx/html/assets COPY docker/mime-types.conf /etc/nginx/conf.d/mime-types.conf \ No newline at end of file