Syzygianinfern0 commited on
Commit
e526530
·
1 Parent(s): 0620290

Some things required for hf

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -3
Dockerfile CHANGED
@@ -1,8 +1,20 @@
1
  FROM syzygianinfern0/stormbase:latest
2
 
3
- # Set working directory and copy your app
4
- WORKDIR /app
5
- COPY . /app
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
  # Expose Gradio port
8
  EXPOSE 7860
 
1
  FROM syzygianinfern0/stormbase:latest
2
 
3
+ # Set up a new user named "user" with user ID 1000
4
+ RUN useradd -m -u 1000 user
5
+
6
+ # Switch to the "user" user
7
+ USER user
8
+
9
+ # Set home to the user's home directory
10
+ ENV HOME=/home/user \
11
+ PATH=/home/user/.local/bin:$PATH
12
+
13
+ # Set the working directory to the user's home directory
14
+ WORKDIR $HOME/app
15
+
16
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
17
+ COPY --chown=user . $HOME/app
18
 
19
  # Expose Gradio port
20
  EXPOSE 7860