File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,7 @@ WORKDIR /home/scu
53
53
54
54
# install base 3rd party packages to accelerate runtime installs
55
55
COPY --chown=scu:scu services/web/server/requirements/base.txt requirements-base.txt
56
- RUN $PIP install --no-cache-dir -r requirements-base.txt &&\
57
- rm requirements-base.txt
58
-
56
+ RUN $PIP install --no-cache-dir -r requirements-base.txt
59
57
60
58
# --------------------------Development stage -------------------
61
59
FROM build as development
@@ -64,8 +62,7 @@ ARG HOST_GID_ARG=1000
64
62
65
63
# install test 3rd party packages to accelerate runtime installs
66
64
COPY --chown=scu:scu services/web/server/requirements/tests.txt requirements-tests.txt
67
- RUN $PIP install --no-cache-dir -r requirements-tests.txt &&\
68
- rm requirements-tests.txt
65
+ RUN $PIP install --no-cache-dir -r requirements-tests.txt
69
66
70
67
# in dev mode we give access to `scu` to host's mapped volumes
71
68
RUN addgroup -g $HOST_GID_ARG hgrp &&\
You can’t perform that action at this time.
0 commit comments