Skip to content

Commit

Permalink
remove extraneous slashses (#727)
Browse files Browse the repository at this point in the history
Signed-off-by: Joey Brown <brown.joseph@salesforce.com>
  • Loading branch information
joeybrown-sf committed Jun 13, 2024
1 parent 0d1d248 commit bb7f5f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FROM ubuntu:jammy
# Install packages that we want to make available at build 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/*

# Set required CNB user information
ARG cnb_uid=1000
Expand All @@ -32,7 +32,7 @@ ENV CNB_GROUP_ID=${cnb_gid}

# Create user and group
RUN groupadd cnb --gid ${CNB_GROUP_ID} && \
useradd --uid ${CNB_USER_ID} --gid ${CNB_GROUP_ID} -m -s /bin/bash cnb \
useradd --uid ${CNB_USER_ID} --gid ${CNB_GROUP_ID} -m -s /bin/bash cnb

# Set user and group
USER ${CNB_USER_ID}:${CNB_GROUP_ID}
Expand Down

0 comments on commit bb7f5f9

Please sign in to comment.