14 lines
No EOL
457 B
Docker
14 lines
No EOL
457 B
Docker
FROM ghcr.io/parkervcp/yolks:debian
|
|
|
|
|
|
WORKDIR /
|
|
USER 0
|
|
|
|
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
|
|
|
|
RUN git config --global --add safe.directory /flutter |