This repository was archived by the owner on Nov 3, 2025. It is now read-only.
Dockerfile and docker build improvements - #167
Merged
Merged
Conversation
The `128142` UID and GID previously used corresponded to the decimal
encoding of the gem emoji ('馃拵') Unicode character.
In conversations with ChatGPT, this ID is outside the typical range on
most Linux distributions:
> In most Linux distributions, the valid range for UIDs and GIDs is from
> 0 to 65535 (inclusive). However, there are reserved ranges and conventions
> that dictate the allocation of UIDs and GIDs. For example, UIDs below 1000
> are often reserved for system users and groups, while UIDs above 1000 are
> typically used for regular users.
>
> In the case of UID/GID 128142, it falls outside the typical valid range of
> UIDs and GIDs on Linux systems. Therefore, it may not be considered a valid
> UID/GID.
Use `1888` for UID and GID of the `artichoke` user, which adheres to
these guidelines.
Pass `THIRDPARTY` file as a build arg.
lopopolo
force-pushed
the
lopopolo/docker-improvements
branch
from
June 10, 2023 23:20
f95b466 to
720707d
Compare
Member
Author
|
Here's a code review from ChatGPT:
|
Member
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

I did some pair programming with ChatGPT here: https://chat.openai.com/c/b88a7262-4fb5-4062-8c32-eed75b809f43.
Improvements
Dockerfiles.empty.txthack for the optionalTHIRDPARTYfile, preferring to use a build ARG..dockerignorefile.