Skip to content

Commit

Permalink
fix(Dockerfile): correct path and add listing command
Browse files Browse the repository at this point in the history
- Added `ls -la` command to list contents of the project directory
- Corrected the path for `require.sh` script execution
  • Loading branch information
Brian2074 committed Nov 4, 2024
1 parent 6a79e51 commit 58bfe9b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ COPY . .

USER root

RUN chmod +x require.sh && ./require.sh
# RUN chmod 777 /tmp/.X11-unix
RUN ls -la /home/arg/oop-proj-hello-mario

RUN chmod +x /home/arg/oop-proj-hello-mario/require.sh && .home/arg/oop-proj-hello-mario/require.sh

CMD ["bash"]

0 comments on commit 58bfe9b

Please sign in to comment.