Skip to content

Commit 476fb80

Browse files
committed
.
1 parent 0499d37 commit 476fb80

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

py/Dockerfile

+18-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,27 @@ RUN apt-get update && \
99
/usr/share/locale \
1010
/usr/share/man
1111

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
1613

1714
WORKDIR /app
1815

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+
1933
COPY requirements.txt .
2034

2135
CMD tail -f /dev/null

0 commit comments

Comments
 (0)