Skip to content

Instantly share code, notes, and snippets.

@fholzer
Created September 18, 2025 11:38
Show Gist options
  • Select an option

  • Save fholzer/d54b2875ad6603e2b0af526ef8ed1da7 to your computer and use it in GitHub Desktop.

Select an option

Save fholzer/d54b2875ad6603e2b0af526ef8ed1da7 to your computer and use it in GitHub Desktop.
Minimal setup to reproduce aws/amazon-q-developer-cli#1966
FROM fedora:42
RUN dnf install -y unzip && dnf clean all
RUN \
curl --proto '=https' --tlsv1.2 -sSf "https://desktop-release.q.us-east-1.amazonaws.com/latest/q-x86_64-linux.zip" -o "q.zip" && \
unzip q.zip && \
./q/install.sh --force --no-confirm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment