Skip to content

Commit

Permalink
Prepare v1.20.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi committed Feb 19, 2024
1 parent be98b9f commit 2335dd9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,13 +2,15 @@

<!-- markdownlint-disable MD024 MD034 -->

## [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 📄

Expand Down
8 changes: 5 additions & 3 deletions build/docker/production.Dockerfile
Expand Up @@ -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 /
Expand Down

0 comments on commit 2335dd9

Please sign in to comment.