diff options
author | saturneric <[email protected]> | 2024-08-12 10:43:32 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-08-12 10:43:32 +0000 |
commit | fc01a058bc5484bdc6b2dbf04be10e87cf8e3174 (patch) | |
tree | 3e473e634d28dfd4cd631256122a546bf4193fa4 /.devcontainer | |
parent | feat: add c++ dev container config (diff) | |
download | GpgFrontend-fc01a058bc5484bdc6b2dbf04be10e87cf8e3174.tar.gz GpgFrontend-fc01a058bc5484bdc6b2dbf04be10e87cf8e3174.zip |
fix: use apt to install qt6
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/Dockerfile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 94b553f8..94aa02c5 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -27,10 +27,7 @@ RUN apt-get update && \ libarchive-dev \ libssl-dev \ libgpgme-dev \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/* - -# Install Qt6 -RUN git clone https://github.com/jurplel/install-qt-action.git /tmp/install-qt-action && \ - /tmp/install-qt-action/install-qt.sh -v "6.7.2" --no-cache && \ - rm -rf /tmp/install-qt-action
\ No newline at end of file + qt6-base-dev \ + qt6-tools-dev \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/*
\ No newline at end of file |