Skip to content

Commit 36e6610

Browse files
committed
Issue #40 - remove incorrect flag from useradd command
Signed-off-by: Jon Bartels <jonathan.bartels@gmail.com>
1 parent fbd4171 commit 36e6610

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,3 +439,4 @@ docker compose build --build-arg CREATED_AT=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
439439
# License [↑](#top)
440440

441441
The Dockerfiles, entrypoint script, and any other files used to build these Docker images are Copyright © NextGen Healthcare and OpenIntegrationEngine contributors. They are licensed under the [Mozilla Public License 2.0](https://www.mozilla.org/en-US/MPL/2.0/).
442+

deploy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ LABEL "org.opencontainers.image.authors"="The Open Integration Engine Project an
5858

5959
COPY --from=downloader /opt/engine /opt/engine
6060
RUN apk add --no-cache bash \
61-
&& adduser -D -H -u $UID engine engine \
61+
&& adduser -D -H -u $UID engine engine
6262

6363
VOLUME /opt/engine/appdata
6464
VOLUME /opt/engine/custom-extensions
@@ -93,7 +93,7 @@ LABEL "org.opencontainers.image.authors"="The Open Integration Engine Project an
9393

9494
COPY --from=downloader /opt/engine /opt/engine
9595
RUN groupadd --gid ${GID} engine \
96-
&& useradd --no-log-init -u ${UID} -g ${GID} -M engine \
96+
&& useradd -u ${UID} -g ${GID} -M engine
9797

9898
VOLUME /opt/engine/appdata
9999
VOLUME /opt/engine/custom-extensions

0 commit comments

Comments
 (0)