From 69a76f69c78c5e3c0cf249d50d5a8b142debc176 Mon Sep 17 00:00:00 2001 From: core Date: Sat, 13 May 2023 18:09:47 -0400 Subject: [PATCH] fix assets not getting copied into the docker container --- web.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.Dockerfile b/web.Dockerfile index 3e807ab147f475779e8f3f3dd97f14359204e03c..ff735426784bfd5d565da8f574a0c71dd7929b5c 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/dist /usr/share/nginx/html +COPY assets /usr/share/nginx/html COPY docker/mime-types.conf /etc/nginx/conf.d/mime-types.conf \ No newline at end of file