v0.6.0 - Fresh build with latest ente sources

This commit is contained in:
Andreas Dueren
2026-01-31 15:45:14 -06:00
parent 1189ec810d
commit eeeeae78e6
3 changed files with 11 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
## 0.6.0 (2025-06-29)
* Fresh build with latest Ente upstream sources (main branch)
* Rebuild all web frontends and Museum binary against current codebase
## 0.5.7 (2025-11-20) ## 0.5.7 (2025-11-20)
* Bundle the Ente Families web app so `family.<domain>` serves the correct invite/management UI instead of the placeholder photos build. * Bundle the Ente Families web app so `family.<domain>` serves the correct invite/management UI instead of the placeholder photos build.

View File

@@ -7,7 +7,7 @@
"contactEmail": "contact@ente.io", "contactEmail": "contact@ente.io",
"website": "https://ente.io", "website": "https://ente.io",
"tagline": "Open source, end-to-end encrypted photo backup", "tagline": "Open source, end-to-end encrypted photo backup",
"version": "0.5.6", "version": "0.6.0",
"upstreamVersion": "git-main", "upstreamVersion": "git-main",
"healthCheckPath": "/health", "healthCheckPath": "/health",
"httpPort": 3080, "httpPort": 3080,

View File

@@ -53,8 +53,12 @@ ENV NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=https://albums.localhost.invalid
COPY --from=ente-source /src /ente COPY --from=ente-source /src /ente
WORKDIR /ente/web WORKDIR /ente/web
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential python3 && \ apt-get install -y --no-install-recommends build-essential python3 curl ca-certificates && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal && \
. "$HOME/.cargo/env" && \
cargo install wasm-pack
ENV PATH="/root/.cargo/bin:${PATH}"
RUN corepack enable RUN corepack enable
RUN yarn install --network-timeout 1000000 RUN yarn install --network-timeout 1000000
RUN mkdir -p /build/web/photos /build/web/accounts /build/web/auth /build/web/cast /build/web/albums /build/web/family /build/web/share /build/web/embed /build/web/payments RUN mkdir -p /build/web/photos /build/web/accounts /build/web/auth /build/web/cast /build/web/albums /build/web/family /build/web/share /build/web/embed /build/web/payments