napatswift commited on
Commit
5b3b75c
·
1 Parent(s): 52ce135

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +22 -2
Dockerfile CHANGED
@@ -8,10 +8,13 @@ FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
8
  RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
9
  RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/7fa2af80.pub
10
 
11
- RUN apt-get update && apt-get install -y git ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6 libgl1-mesa-glx \
12
  && apt-get clean \
13
  && rm -rf /var/lib/apt/lists/*
14
 
 
 
 
15
  RUN pip install -U openmim
16
  RUN mim install mmengine
17
  RUN mim install 'mmcv>=2.0.0rc1'
@@ -21,4 +24,21 @@ WORKDIR /mmocr
21
  # ENV FORCE_CUDA="1"
22
  RUN pip install -r requirements.txt
23
  RUN pip install --no-cache-dir -e .
24
- RUN pip install -r requirements/albu.txt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
9
  RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/7fa2af80.pub
10
 
11
+ RUN apt-get update && apt-get install -y git ninja-build libglib2.0-0 libsm6 ffmpeg libxrender-dev libxext6 libgl1-mesa-glx \
12
  && apt-get clean \
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
+ COPY ./requirements.txt /code/requirements.txt
16
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
17
+
18
  RUN pip install -U openmim
19
  RUN mim install mmengine
20
  RUN mim install 'mmcv>=2.0.0rc1'
 
24
  # ENV FORCE_CUDA="1"
25
  RUN pip install -r requirements.txt
26
  RUN pip install --no-cache-dir -e .
27
+ RUN pip install -r requirements/albu.txt
28
+
29
+ # Set up a new user named "user" with user ID 1000
30
+ RUN useradd -m -u 1000 user
31
+ # Switch to the "user" user
32
+ USER user
33
+ # Set home to the user's home directory
34
+ ENV HOME=/home/user \
35
+ PATH=/home/user/.local/bin:$PATH
36
+
37
+ # Set the working directory to the user's home directory
38
+ WORKDIR $HOME/app
39
+
40
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
41
+ COPY --chown=user . $HOME/app
42
+ RUN ls
43
+
44
+ CMD ["python", "main.py"]