File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 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
3232# Make installed binaries available for POSIX compliant scripts
3333ENV PATH="/app/.venv/bin:$PATH"
3434# 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
3636# 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
3838# Patch for scripts that use a hard-coded path to python (django-run, asgi-run)
3939ENV PYTHONPATH="/app/.venv/lib/python3.11/site-packages/:$PYTHONPATH"
4040
You can’t perform that action at this time.
0 commit comments