dkdaniz commited on
Commit
04b42c2
1 Parent(s): 6cbd74b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -13,6 +13,7 @@ RUN apt-get update && apt-get upgrade -y \
13
  && mkdir -p /etc/OpenCL/vendors && echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
14
 
15
  COPY . .
 
16
 
17
  # setting build related env vars
18
  ENV CUDA_DOCKER_ARCH=all
@@ -44,5 +45,7 @@ WORKDIR $HOME/app
44
 
45
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
46
  COPY --chown=user . $HOME/app
 
 
47
 
48
  CMD ["python", "app.py"]
 
13
  && mkdir -p /etc/OpenCL/vendors && echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
14
 
15
  COPY . .
16
+ COPY ./localGPTUI ./localGPTUI
17
 
18
  # setting build related env vars
19
  ENV CUDA_DOCKER_ARCH=all
 
45
 
46
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
47
  COPY --chown=user . $HOME/app
48
+ COPY --chown=user ./localGPTUI $HOME/app/localGPTUI
49
+ COPY
50
 
51
  CMD ["python", "app.py"]