Skip to content

Commit

Permalink
Update run-base.md: fix Dockerfile template (#772)
Browse files Browse the repository at this point in the history
Remove errors in trailing lines

Signed-off-by: GatinMI <[email protected]>
  • Loading branch information
GatinMI authored Oct 17, 2024
1 parent 1ed3638 commit f50368c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ FROM ubuntu:jammy
# Install packages that we want to make available at run time
RUN apt-get update && \
apt-get install -y xz-utils ca-certificates && \
rm -rf /var/lib/apt/lists/* \
rm -rf /var/lib/apt/lists/*

# Create user and group
ARG cnb_uid=1000
ARG cnb_gid=1000
RUN groupadd cnb --gid ${cnb_gid} && \
useradd --uid ${cnb_uid} --gid ${cnb_gid} -m -s /bin/bash cnb \
useradd --uid ${cnb_uid} --gid ${cnb_gid} -m -s /bin/bash cnb

# Set user and group
USER ${cnb_uid}:${cnb_gid}
Expand Down

0 comments on commit f50368c

Please sign in to comment.