Skip to content

Commit

Permalink
check cert files status after test creation
Browse files Browse the repository at this point in the history
  • Loading branch information
zostaw committed Dec 2, 2023
1 parent 8862274 commit c956bee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ ENV PYTHONPATH=/app
# Create a group and user
ENV USER="appuser"
ENV GROUP="appgroup"
ENV UID="1001"
RUN addgroup -S $GROUP
RUN adduser -D $USER -S $USER -G $GROUP
RUN adduser --uid $UID -D $USER -S $USER -G $GROUP

# Change owner of the process
RUN chown -R $USER:$GROUP /app
Expand Down

0 comments on commit c956bee

Please sign in to comment.