From 6ae4eed8dfcacaffbb1a0bc596ff278f6657d49c Mon Sep 17 00:00:00 2001 From: Swerik <47034061+TheSwerik@users.noreply.github.com> Date: Wed, 9 Jul 2025 01:47:14 +0200 Subject: [PATCH] add allowed hosts (#141) --- src/Api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index 82c7fe5..6c636f3 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /build COPY ../../. . RUN apk add --no-cache nodejs npm RUN npm install -g yarn -RUN dotnet publish /build/publish src/Api/Api.csproj -c Release -o +RUN dotnet publish src/Api/Api.csproj -c Release -o /build/publish #########################################################################