Commit f169991 1 parent 957d52d commit f169991 Copy full SHA for f169991
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,6 @@ COPY docker/set_up_stackwalker.sh /tmp/set_up_stackwalker.sh
26
26
RUN /tmp/set_up_stackwalker.sh && \
27
27
rm /tmp/set_up_stackwalker.sh
28
28
29
- # Install frontend JS deps
30
- COPY --chown=app:app ./webapp/package*.json /app/webapp/
31
- RUN cd /app/webapp/ && npm ci
32
-
33
29
COPY --chown=app:app requirements.txt /app/
34
30
RUN pip install --no-cache-dir --no-deps -r requirements.txt && \
35
31
pip check --disable-pip-version-check
@@ -41,6 +37,10 @@ ENV PYTHONUNBUFFERED=1 \
41
37
NPM_ROOT_PATH=/app/webapp/ \
42
38
NODE_PATH=/app/webapp/node_modules/
43
39
40
+ # Install frontend JS deps
41
+ COPY --chown=app:app ./webapp/package*.json ./webapp/esbuild.js /app/webapp/
42
+ RUN cd /app/webapp/ && npm ci
43
+
44
44
# app should own everything under /app in the container
45
45
USER app
46
46
You can’t perform that action at this time.
0 commit comments