supertskone commited on
Commit
6be36ce
·
verified ·
1 Parent(s): 001a413

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -11
Dockerfile CHANGED
@@ -7,24 +7,26 @@ WORKDIR /app
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
 
 
 
 
10
 
11
-
12
-
13
  RUN useradd -m -u 1000 user
14
- USER user
 
15
  ENV HOME=/home/user \
16
- PATH=/home/user/.local/bin:$PATH
17
 
 
18
  WORKDIR $HOME/app
19
 
 
20
  COPY --chown=user . $HOME/app
21
 
22
-
23
-
24
- # Install system dependencies
25
- RUN apt-get update && apt-get install -y \
26
- git \
27
- && rm -rf /var/lib/apt/lists/*
28
 
29
  # Install Python dependencies
30
  RUN pip install --no-cache-dir --upgrade pip
@@ -42,4 +44,4 @@ EXPOSE 8501
42
  EXPOSE 5000
43
 
44
  # Run data loading, backend, and frontend
45
- CMD ["sh", "-c", "python load_data.py && python run.py & streamlit run ui/app.py --server.port=8501 --server.address=0.0.0.0"]
 
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
10
+ # Install system dependencies
11
+ RUN apt-get update && apt-get install -y \
12
+ git \
13
+ && rm -rf /var/lib/apt/lists/*
14
 
15
+ # Create a non-root user and switch to that user
 
16
  RUN useradd -m -u 1000 user
17
+
18
+ # Set the home directory for the user
19
  ENV HOME=/home/user \
20
+ PATH=/home/user/.local/bin:$PATH
21
 
22
+ # Set the working directory for the new user
23
  WORKDIR $HOME/app
24
 
25
+ # Change ownership of the app directory
26
  COPY --chown=user . $HOME/app
27
 
28
+ # Switch to the new user
29
+ USER user
 
 
 
 
30
 
31
  # Install Python dependencies
32
  RUN pip install --no-cache-dir --upgrade pip
 
44
  EXPOSE 5000
45
 
46
  # Run data loading, backend, and frontend
47
+ CMD ["sh", "-c", "python load_data.py && python run.py & streamlit run ui/app.py --server.port=8501 --server.address=0.0.0.0"]