From 76eca2d9ca0490f2a378c4057247573399a58e06 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Tue, 23 May 2023 22:18:48 +0200 Subject: [PATCH] Updated build dir --- pac-man-board-game/ClientApp/vite.config.ts | 4 ++++ pac-man-board-game/Dockerfile | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pac-man-board-game/ClientApp/vite.config.ts b/pac-man-board-game/ClientApp/vite.config.ts index 1e914ef..eb68a18 100644 --- a/pac-man-board-game/ClientApp/vite.config.ts +++ b/pac-man-board-game/ClientApp/vite.config.ts @@ -1,3 +1,4 @@ +/// import react from "@vitejs/plugin-react"; import {defineConfig} from "vite"; @@ -9,6 +10,9 @@ import {execSync} from "child_process"; export default defineConfig({ plugins: [react()], + build: { + outDir: "build", + }, test: { globals: false, environment: "happy-dom", diff --git a/pac-man-board-game/Dockerfile b/pac-man-board-game/Dockerfile index 5b93325..f508d39 100644 --- a/pac-man-board-game/Dockerfile +++ b/pac-man-board-game/Dockerfile @@ -16,7 +16,6 @@ COPY ["pac-man-board-game/pac-man-board-game.csproj", "pac-man-board-game/"] RUN dotnet restore "pac-man-board-game/pac-man-board-game.csproj" COPY . . WORKDIR "/src/pac-man-board-game" -# TODO missing build files from frontend RUN dotnet build "pac-man-board-game.csproj" -c Release -o /app/build FROM build AS publish