thewise commited on
Commit
dabd9af
·
verified ·
1 Parent(s): 58255bc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -7,8 +7,8 @@ WORKDIR /app
7
  # Create non-root user
8
  RUN useradd -m -u 1000 user
9
 
10
- # Create a directory for the GitHub repo and ensure it has the correct permissions
11
- RUN mkdir /app/github_repo && chown -R user:user /app/github_repo
12
 
13
  # Switch to the non-root user
14
  USER user
 
7
  # Create non-root user
8
  RUN useradd -m -u 1000 user
9
 
10
+ # Create Github directory
11
+ RUN mkdir ./github_repo && chown user:user ./github_repo
12
 
13
  # Switch to the non-root user
14
  USER user