File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ RUN if [ "$DEPENDENCY_MANAGER" = "uv" ]; then uv sync --frozen --no-dev --no-ins
32
32
# Make installed binaries available for POSIX compliant scripts
33
33
ENV PATH="/app/.venv/bin:$PATH"
34
34
# Patch for scripts that use a hard-coded path to uwsgi (django-run)
35
- RUN if [ "$DEPENDENCY_MANAGER" = "uv" ]; then cp /app/.venv/bin/uwsgi /usr/local/bin/uwsgi; fi
35
+ RUN if [ "$DEPENDENCY_MANAGER" = "uv" ]; then mv /app/.venv/bin/uwsgi /usr/local/bin/uwsgi; fi
36
36
# Patch for scripts that use a hard-coded path to gunicorn (asgi-run)
37
- RUN if [ "$DEPENDENCY_MANAGER" = "uv" ]; then cp /app/.venv/bin/gunicorn /usr/local/bin/gunicorn; fi
37
+ RUN if [ "$DEPENDENCY_MANAGER" = "uv" ]; then mv /app/.venv/bin/gunicorn /usr/local/bin/gunicorn; fi
38
38
# Patch for scripts that use a hard-coded path to python (django-run, asgi-run)
39
39
ENV PYTHONPATH="/app/.venv/lib/python3.11/site-packages/:$PYTHONPATH"
40
40
You can’t perform that action at this time.
0 commit comments