This repository was archived by the owner on Sep 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22
33# Change Log
44
5+ ## UNRELEASED
6+
7+ - fix: update dockerfile to include legacy time zones [ #909 ] ( https://github.com/hypermodeinc/modus/pull/909 )
8+
59## 2025-06-23 - Runtime 0.18.0-alpha.13
610
711- fix: time zone retrieval and logging [ #906 ] ( https://github.com/hypermodeinc/modus/pull/906 )
8- - feat: distribute actors across cluster when restoring on startup [ #976 ] ( https://github.com/hypermodeinc/modus/pull/907 )
12+ - feat: distribute actors across cluster when restoring on startup [ #907 ] ( https://github.com/hypermodeinc/modus/pull/907 )
913
1014## 2025-06-23 - Runtime 0.18.0-alpha.12
1115
Original file line number Diff line number Diff line change @@ -58,9 +58,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
5858COPY --from=builder /src/runtime/modus_runtime /usr/bin/modus_runtime
5959
6060# update certificates and time zones every build
61- RUN apt-get update && apt-get install -y --no-install-recommends \
61+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
6262 ca-certificates \
63- tzdata \
63+ tzdata tzdata-legacy \
6464 && rm -rf /var/lib/apt/lists/*
6565
6666# Switch to the custom user and set the working directory
You can’t perform that action at this time.
0 commit comments