Mdean77 commited on
Commit
5aa9680
·
1 Parent(s): d69acf5
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. entrypoint.sh +2 -0
Dockerfile CHANGED
@@ -25,7 +25,7 @@ WORKDIR $HOME/app
25
  RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=$HOME/app sh
26
 
27
  # # Copy the app to the container
28
- COPY --chown=root . $HOME/app
29
 
30
  RUN chmod 777 entrypoint.sh
31
 
 
25
  RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=$HOME/app sh
26
 
27
  # # Copy the app to the container
28
+ COPY --chown=user . $HOME/app
29
 
30
  RUN chmod 777 entrypoint.sh
31
 
entrypoint.sh CHANGED
@@ -9,6 +9,8 @@ pwd
9
  ls -la
10
  ls -la ../
11
  # Run my chainlit app using uv
 
 
12
  echo "Starting Chainlit application..."
13
  uv run chainlit run app.py --host 0.0.0.0 --port 7860
14
 
 
9
  ls -la
10
  ls -la ../
11
  # Run my chainlit app using uv
12
+
13
+ echo "Path is $PATH"
14
  echo "Starting Chainlit application..."
15
  uv run chainlit run app.py --host 0.0.0.0 --port 7860
16