From 2335dd99e24aa91a36fa5d5567c73c6700475583 Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Mon, 19 Feb 2024 17:10:47 +0400 Subject: [PATCH] Prepare v1.20.1 release --- CHANGELOG.md | 6 ++++-- build/docker/production.Dockerfile | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 797770474e9..6397663c4fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,15 @@ -## [v1.20.0](https://github.com/FerretDB/FerretDB/releases/tag/v1.20.0) (2024-02-19) +## [v1.20.1](https://github.com/FerretDB/FerretDB/releases/tag/v1.20.1) (2024-02-19) ### What's Changed #### Docker images changes -Production Docker images now use a non-root user with UID 1000 and GID 1000. +~~Production Docker images now use a non-root user with UID 1000 and GID 1000.~~ + +That change was reverted in v1.20.1 and will be re-introduced in a future release. ### Documentation 📄 diff --git a/build/docker/production.Dockerfile b/build/docker/production.Dockerfile index faa4bf778e8..dffbf6b2c37 100644 --- a/build/docker/production.Dockerfile +++ b/build/docker/production.Dockerfile @@ -101,10 +101,12 @@ COPY --from=production-build /src/bin/ferretdb /ferretdb FROM scratch AS production COPY --from=production-build /src/bin/ferretdb /ferretdb -COPY build/docker/passwd /etc/passwd -COPY build/docker/group /etc/group -USER ferretdb:ferretdb +# TODO https://github.com/FerretDB/FerretDB/issues/3992 +# COPY build/docker/passwd /etc/passwd +# COPY build/docker/group /etc/group +# USER ferretdb:ferretdb + ENTRYPOINT [ "/ferretdb" ] WORKDIR /