HBDing commited on
Commit
46866a3
·
1 Parent(s): 4a2d1eb
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,6 +1,9 @@
1
 
2
  FROM python:3.10
3
 
 
 
 
4
  # Set up a new user named "user" with user ID 1000
5
  RUN useradd -m -u 1000 user
6
 
@@ -14,7 +17,6 @@ COPY --link --chown=1000 . .
14
  RUN mkdir -p /tmp/cache/
15
  RUN chmod a+rwx -R /tmp/cache/
16
  ENV TRANSFORMERS_CACHE=/tmp/cache/
17
- RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
18
  # RUN apt-get update && apt-get install -y libgl1
19
 
20
 
 
1
 
2
  FROM python:3.10
3
 
4
+
5
+ RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
6
+
7
  # Set up a new user named "user" with user ID 1000
8
  RUN useradd -m -u 1000 user
9
 
 
17
  RUN mkdir -p /tmp/cache/
18
  RUN chmod a+rwx -R /tmp/cache/
19
  ENV TRANSFORMERS_CACHE=/tmp/cache/
 
20
  # RUN apt-get update && apt-get install -y libgl1
21
 
22