Spaces:
Building
Building
Update Dockerfile
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
@@ -30,12 +30,17 @@ RUN apt-get -qqy update \
|
|
30 |
|
31 |
|
32 |
|
33 |
-
RUN pip install --break-system-packages -r requirements.txt
|
34 |
|
35 |
RUN chown "${SEL_UID}:${SEL_GID}" $HOME/.local
|
36 |
|
37 |
WORKDIR /app
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
# COPY --chown=user ./requirements.txt requirements.txt
|
40 |
# RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
41 |
|
|
|
30 |
|
31 |
|
32 |
|
|
|
33 |
|
34 |
RUN chown "${SEL_UID}:${SEL_GID}" $HOME/.local
|
35 |
|
36 |
WORKDIR /app
|
37 |
|
38 |
+
COPY requirements.txt /app
|
39 |
+
|
40 |
+
|
41 |
+
RUN pip install --break-system-packages -r requirements.txt
|
42 |
+
|
43 |
+
|
44 |
# COPY --chown=user ./requirements.txt requirements.txt
|
45 |
# RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
46 |
|