Tweak Docker files

This commit is contained in:
2024-01-13 21:46:37 -05:00
parent 9f7530cbe5
commit 39ebb652b6
2 changed files with 1 additions and 2 deletions

View File

@@ -11,8 +11,8 @@ WORKDIR "/src"
RUN dotnet publish "Service.csproj" -c Release -o /app
FROM base AS final
RUN apk add --no-cache tzdata
WORKDIR /app
COPY --from=build /app .
RUN apk add --no-cache tzdata icu-libs
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false
ENTRYPOINT ["dotnet", "ChrisKaczor.HomeMonitor.Environment.Service.dll"]