Spaces:
Sleeping
Sleeping
januarevan
commited on
Commit
•
cdf55ce
1
Parent(s):
da05b08
init
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -4,10 +4,10 @@ WORKDIR /app
|
|
4 |
|
5 |
COPY requirements.txt /app/requirements.txt
|
6 |
|
7 |
-
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
8 |
-
|
9 |
RUN mkdir -p /app/cache /app/milvus_data && chmod -R 777 /app/cache /app/milvus_data
|
10 |
|
|
|
|
|
11 |
RUN useradd -m -u 1000 user
|
12 |
USER user
|
13 |
ENV HOME=/home/user \
|
|
|
4 |
|
5 |
COPY requirements.txt /app/requirements.txt
|
6 |
|
|
|
|
|
7 |
RUN mkdir -p /app/cache /app/milvus_data && chmod -R 777 /app/cache /app/milvus_data
|
8 |
|
9 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
10 |
+
|
11 |
RUN useradd -m -u 1000 user
|
12 |
USER user
|
13 |
ENV HOME=/home/user \
|