From dd559e60b74fb27ea8b37fd4e2a06582df0e1ba9 Mon Sep 17 00:00:00 2001 From: Murilo Azevedo Jacon Date: Fri, 7 Jun 2024 00:29:40 -0300 Subject: [PATCH] Removed user app from Dockerfile due to file permissions --- src/Adapters/FlexiFile.API/Dockerfile | 1 - src/Adapters/FlexiFile.Worker/Dockerfile | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Adapters/FlexiFile.API/Dockerfile b/src/Adapters/FlexiFile.API/Dockerfile index 8466aa0..3200c98 100644 --- a/src/Adapters/FlexiFile.API/Dockerfile +++ b/src/Adapters/FlexiFile.API/Dockerfile @@ -1,7 +1,6 @@ #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-alpine AS base -USER app WORKDIR /app EXPOSE 8080 diff --git a/src/Adapters/FlexiFile.Worker/Dockerfile b/src/Adapters/FlexiFile.Worker/Dockerfile index eb57ff5..a9c210a 100644 --- a/src/Adapters/FlexiFile.Worker/Dockerfile +++ b/src/Adapters/FlexiFile.Worker/Dockerfile @@ -1,7 +1,6 @@ #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-alpine AS base -USER app WORKDIR /app EXPOSE 8080