From d0704aea12e82f7b1b88a9eeaec089c0f8bd68fa Mon Sep 17 00:00:00 2001 From: ThompsonNye Date: Sat, 24 Aug 2024 14:24:18 +0200 Subject: [PATCH] Fix permissions in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2058b2c..4e01f84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base -USER app WORKDIR /app EXPOSE 8080 EXPOSE 8081 RUN apt-get update && apt-get install -y curl +USER app FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release