Skip to content

Commit

Permalink
Add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostwords committed Aug 2, 2023
1 parent 140f73e commit 1e5a947
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ else \
fi

# fix home directory permissions
RUN echo $UNAME
RUN chown -R $UNAME:$UNAME /home/$UNAME
RUN whoami
RUN groups
RUN pwd
RUN ls -ld /home/$UNAME
RUN ls -Al /home/$UNAME

USER $UNAME
ENV USER=$UNAME
Expand All @@ -38,6 +44,12 @@ ENV EXTENSIONS=$HOME/parallel-extensions/

WORKDIR $HOME

RUN whoami
RUN groups
RUN pwd
RUN ls -ld .
RUN ls -Al .

COPY requirements.txt .
RUN pip3 install --user -r requirements.txt

Expand Down

0 comments on commit 1e5a947

Please sign in to comment.