Speed up docker builds, create a special image for build dependencies.
This commit is contained in:
parent
c4f68d53ca
commit
b9c1e1f53a
3 changed files with 18 additions and 9 deletions
10
docker_images/builddeps/Dockerfile
Normal file
10
docker_images/builddeps/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM debian:latest
|
||||
|
||||
|
||||
WORKDIR /
|
||||
RUN apt-get update
|
||||
RUN apt-get upgrade -y
|
||||
RUN apt-get install -y git wget curl unzip xz-utils zip libglu1-mesa clang cmake ninja-build pkg-config liblzma-dev libstdc++-12-dev rsync
|
||||
|
||||
RUN wget -O flutter.tar.xz https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.22.1-stable.tar.xz
|
||||
RUN tar -xvf flutter.tar.xz
|
Loading…
Add table
Add a link
Reference in a new issue