From f16a669882402d93301e0c34f7b094a95d44d260 Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 12 Jun 2023 10:41:08 +0200 Subject: [PATCH] fix(front): missing tsconfig.json file in docker build Part-of: --- front/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/Dockerfile b/front/Dockerfile index fd630d4aa..3e292ffa2 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -10,7 +10,7 @@ RUN yarn install COPY public /app/public COPY src /app/src -COPY index.html pwa-manifest.json vite.config.ts /app/ +COPY index.html pwa-manifest.json tsconfig.json vite.config.ts /app/ RUN yarn build:deployment FROM nginx:1.23.4-alpine as production