Cursor CLI installation fails (403 while downloading artifact) for latest versions (linux/arm64 & linux/x64 architectures)

Where does the bug appear (feature/product)?

Cursor CLI

Describe the Bug

the cursor CLI installation for the latest version (2026.03.24-933d5a6) is failing as the download fails for the installation artifact.
I have tried downloading it for linux/arm64 and linux/x64 architectures.

please note: I was able to download and install the previous versions like 2026.02.27-e7d2ef6 (with the same Dockerfile).

Is cursor not supported for certain architectures now?
or Am I doing something wrong?
I would really appreciate any kind of support.
Thanks

here is my Dockerfile for the reference:

FROM python:3.11-slim as builder
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir --upgrade pip &&
pip install --no-cache-dir build &&
pip install --no-cache-dir .

FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y
git
curl
vim
jq
&& rm -rf /var/lib/apt/lists/*

ENV HOME=/root
RUN curl -fsSL Cursor · CLI | bash &&
mv /root/.local/bin/cursor-agent /usr/local/bin/cursor &&
chmod +x /usr/local/bin/cursor

COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
COPY --from=builder /usr/local/bin /usr/local/bin
COPY . .

RUN mkdir -p /data/repos && chmod 777 /data/repos
EXPOSE 8000
CMD [“uvicorn”, “src.app.main:app”, “–host”, “0.0.0.0”, “–port”, “8000”]

Steps to Reproduce

try to spin up the container with the above given Dockerfile.

Expected Behavior

the cursor cli is installed in the container.

Screenshots / Screen Recordings

Operating System

MacOS

Version Information

2026.03.24-933d5a6

Does this stop you from using Cursor

Yes - Cursor is unusable

Sorry, my bad.
Seems like Cursor team is already on it.
and this is duplicate of this topic.

A post was merged into an existing topic: Cursor CLI cannot be installed, installer tried to download asset that 403’s