Created
September 18, 2025 11:38
-
-
Save fholzer/d54b2875ad6603e2b0af526ef8ed1da7 to your computer and use it in GitHub Desktop.
Minimal setup to reproduce aws/amazon-q-developer-cli#1966
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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