Skip to content
Snippets Groups Projects
Commit 7bf8c0ee authored by Andrew Kapuscinski's avatar Andrew Kapuscinski
Browse files

Create almapipe user in dockerfile.base

parent 44c0a3e8
No related branches found
Tags test_0.0.1 test_0.0.2
1 merge request!516Create almapipe user in dockerfile.base
Pipeline #2952 passed
......@@ -19,6 +19,11 @@ RUN addgroup --gid 6000 vlapipe && \
# Create vlapipe user placed in vlapipe group
useradd --create-home --comment "" --gid 6000 --uid 6000 vlapipe
# Create almapipe group
RUN addgroup --gid 9233 almapipe && \
# Create almapipe user placed in almapipe group
useradd --create-home --comment "" --gid 9233 --uid 9233 almapipe
# Switch to appuser
USER vlapipe
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment