Update dependencies
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
15409caafc
commit
55b3227550
1 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
|||
FROM debian:bookworm-slim
|
||||
FROM debian:bookworm-slim as buildenv
|
||||
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
ARG TERM=linux
|
||||
|
@ -9,5 +11,8 @@ RUN apt update && \
|
|||
apt upgrade
|
||||
|
||||
# Install dependencies
|
||||
RUN apt install -y tzdata curl ninja-build git cmake g++ npm libssl-dev python3-distutils python3-distro mesa-common-dev libgl1-mesa-dev \
|
||||
RUN apt update && apt install -y python3-full zip tzdata curl ninja-build git cmake g++ libssl-dev python3-distutils python3-distro mesa-common-dev libgl1-mesa-dev \
|
||||
libqt5websockets5-dev qtscript5-dev qtdeclarative5-dev qtmultimedia5-dev libqt5webchannel5-dev qtwebengine5-dev libqt5xmlpatterns5-dev
|
||||
|
||||
# Cleanup
|
||||
RUN apt clean && rm -rf /var/lib/app/lists/*
|
||||
|
|
Loading…
Reference in a new issue