New containers

This commit is contained in:
maurice
2025-10-28 12:14:28 +01:00
parent f0a71e9d47
commit 2d111c34a7
8 changed files with 100 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
FROM git.plabble.org/maurice/android:main
ARG flutter_version="3.35.7-stable"
ARG download_uri="https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${flutter_version}.tar.xz"
RUN mkdir /home/user/Flutter && \
curl -Lo /tmp/flutter.tar.xz "${download_uri}" && \
tar -xf /tmp/flutter.tar.xz -C /home/user/Flutter && \
rm /tmp/flutter.tar.xz
RUN echo 'export PATH="$HOME/Flutter/flutter/bin:$PATH"' >> /home/user/.bashrc
RUN echo 'export FLUTTER_ROOT="$HOME/Flutter/flutter"' >> /home/user/.bashrc