aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorivar <i@oiee.no>2025-10-06 20:28:07 +0200
committerivar <i@oiee.no>2025-10-06 20:28:07 +0200
commit88d2b0adb177ae4ab77841af7e0521c8dc713f70 (patch)
tree1d38cdb7ab2687cddd1f95cacb13b5763d8809fc /Dockerfile
parentde287766f8b1df1efa2f6a37ec6ae5d69c0ced12 (diff)
downloadvegadata-88d2b0adb177ae4ab77841af7e0521c8dc713f70.tar.xz
vegadata-88d2b0adb177ae4ab77841af7e0521c8dc713f70.zip
12
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 1958d44..2aed16f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,5 +15,7 @@ RUN dotnet publish "./VegaData.csproj" -c Release -o /app/publish /p:UseAppHost=
FROM base AS final
WORKDIR /app
+ENV TZ=Europe/Oslo
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "VegaData.dll"]