From c53b8515da130e3b67e79fa0eab21ac8368e2dc5 Mon Sep 17 00:00:00 2001 From: Avraham Sakal Date: Mon, 17 Jun 2024 21:54:53 -0400 Subject: [PATCH] oops. now need to include index.css in Dockerfile --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 34a329f..d3a3e14 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -9,7 +9,7 @@ COPY package.json pnpm-lock.yaml /app/ # install dependencies: RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile # copy what's necessary to build: -COPY tsconfig.json vite.config.ts index.html /app/ +COPY tsconfig.json vite.config.ts index.html index.css /app/ COPY src /app/src # Vite injects envvars at build time, not runtime: ENV VITE_SERVER_BASE_URL=https://calendar-optimizer-server.sakal.us