From a8c5539f6464ae9f36dbe565fe036137a883bdd7 Mon Sep 17 00:00:00 2001 From: Fishandchips321 Date: Sat, 20 Dec 2025 22:39:27 +0000 Subject: [PATCH] remove comments --- backend/Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 0498971..a716336 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -2,7 +2,6 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0 AS backend-build WORKDIR /app/backend -# Copy backend files COPY ./*.csproj ./ RUN dotnet restore @@ -13,13 +12,10 @@ FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime WORKDIR /app -# Copy backend build output COPY --from=backend-build /app/backend/out ./backend -# Create a directory for the Kubernetes configuration file RUN mkdir -p /app/kube-config -# Set an environment variable to point to the Kubernetes config directory ENV KUBECONFIG=/app/kube-config/config ENV BACKEND=kubernetes