Skip to content

Commit

Permalink
Update Dockerfile project folder permission fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seunAdeks authored Nov 6, 2024
1 parent ba72421 commit 6b1c0a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ RUN apt-get update -y && \
rm -rf /var/lib/apt/lists/*

RUN chown -R 1000:1000 /opt
RUN chown -R 1000:1000 /home/
USER 1000

# Install conda
Expand Down Expand Up @@ -56,6 +55,10 @@ RUN conda update --all --quiet -y && \

RUN mkdir -p /home/coder/project

USER root
RUN chown -R 1000:1000 /home/coder/project
USER 1000

ENV PATH="$PATH:/home/.yarn/bin"
#RUN yarn add @rmlio/yarrrml-parser
RUN npm i -g @rmlio/yarrrml-parser
Expand Down

0 comments on commit 6b1c0a7

Please sign in to comment.