File tree 1 file changed +18
-4
lines changed
1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,27 @@ RUN apt-get update && \
9
9
/usr/share/locale \
10
10
/usr/share/man
11
11
12
- RUN mkdir -p /app/cache/pip /app/cache/hf
13
-
14
- RUN HF_HOME=/app/cache/hf PIP_CACHE_DIR=/app/cache/pip pip install -U sentence-transformers && \
15
- rm -rf /app/cache
12
+ RUN mkdir -p /app
16
13
17
14
WORKDIR /app
18
15
16
+ ARG UNAME=app
17
+ ARG UID
18
+ ARG GID
19
+ ENV APP_HOME /app
20
+
21
+ # Create the group for the user
22
+ RUN if [ x"${GID}" != x"" ] ; \
23
+ then groupadd ${UNAME} -g ${GID} -o ; \
24
+ else groupadd ${UNAME} ; \
25
+ fi
26
+
27
+ # Create the User and assign ${APP_HOME} as its home directory
28
+ RUN if [ x"${UID}" != x"" ] ; \
29
+ then useradd -m -d ${APP_HOME} -u ${UID} -o -g ${UNAME} -s /bin/bash ${UNAME} ; \
30
+ else useradd -m -d ${APP_HOME} -g ${UNAME} -s /bin/bash ${UNAME} ; \
31
+ fi
32
+
19
33
COPY requirements.txt .
20
34
21
35
CMD tail -f /dev/null
You can’t perform that action at this time.
0 commit comments