From a3389aaafa89020e23f32bfc09cc5d7679968f89 Mon Sep 17 00:00:00 2001 From: Paramtamtam <7326800+tarampampam@users.noreply.github.com> Date: Sat, 9 Apr 2022 19:39:52 +0400 Subject: [PATCH] Changing UID/GID to the numeric values (#93) --- CHANGELOG.md | 8 ++++++++ Dockerfile | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a3ff40..734f6f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver]. +## UNRELEASED + +### Fixed + +- User UID/GID changed to the numeric values in the dockerfile [#92] + +[#92]:https://github.com/tarampampam/error-pages/issues/92 + ## v2.12.1 ### Fixed diff --git a/Dockerfile b/Dockerfile index 596dead..c62b6dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,7 +60,7 @@ LABEL \ COPY --from=builder /tmp/rootfs / # Use an unprivileged user -USER appuser:appuser +USER 10001:10001 WORKDIR /opt