Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a0e86371 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Add qt6 and factor the apt calls in a single layer

parent 1bc7686a
No related branches found
No related tags found
No related merge requests found
Pipeline #839546 failed
...@@ -20,8 +20,8 @@ RUN wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee ...@@ -20,8 +20,8 @@ RUN wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee
RUN wget -qO /etc/apt/sources.list.d/lunarg-vulkan-jammy.list http://packages.lunarg.com/vulkan/lunarg-vulkan-jammy.list RUN wget -qO /etc/apt/sources.list.d/lunarg-vulkan-jammy.list http://packages.lunarg.com/vulkan/lunarg-vulkan-jammy.list
# Install common packages # Install common packages
RUN apt-get update RUN apt-get update && \
RUN apt-get install -y \ apt-get install -y \
gnupg2 \ gnupg2 \
libacl1-dev \ libacl1-dev \
libboost-context-dev \ libboost-context-dev \
...@@ -40,11 +40,14 @@ RUN apt-get install -y \ ...@@ -40,11 +40,14 @@ RUN apt-get install -y \
vulkan-sdk \ vulkan-sdk \
vulkan-tools \ vulkan-tools \
vulkan-validationlayers-dev \ vulkan-validationlayers-dev \
zlib1g-dev zlib1g-dev \
libqt6charts6-dev \
RUN apt-get autoremove -y libqt6svg6-dev \
RUN apt-get autoclean -y qtbase6-dev \
RUN apt-get purge -y qttools6-dev && \
apt-get autoremove -y && \
apt-get autoclean -y && \
apt-get purge -y
RUN cd $HOME && \ RUN cd $HOME && \
wget https://perftools.pages.jsc.fz-juelich.de/cicd/otf2/tags/otf2-3.0.3/otf2-3.0.3.tar.gz && \ wget https://perftools.pages.jsc.fz-juelich.de/cicd/otf2/tags/otf2-3.0.3/otf2-3.0.3.tar.gz && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment