Add some comments

This commit is contained in:
2023-10-07 23:16:17 +02:00
parent 5f8eeb97d4
commit 5b5ec37de6
2 changed files with 19 additions and 15 deletions

View File

@@ -3,18 +3,17 @@ FROM debian:bookworm-20230919-slim
# The version of Flutter to use
ARG FLUTTER_VERSION
RUN echo $FLUTTER_VERSION
# Set environment variables
# Add Flutter to the PATH
ENV PATH="$PATH:/opt/flutter/bin"
# It turns out that the provided tarballs all expect x86 and thus bundle
# the x86 build of Dart, which obviously does not work. Thus, we have to
# fetch the repo from Github and use that instead. Then Flutter fetches the
# correct Dart build and everything should work.
RUN apt-get update && apt-get install -y git curl unzip
RUN mkdir -p /opt && \
git clone --depth=1 -b $FLUTTER_VERSION https://github.com/flutter/flutter.git /opt/flutter
# Install Flutter's Linux dependencies and pre-cache dependencies
#RUN apt-get install clang cmake ninja-build pkg-config libgtk3-dev liblzma-dev libstdc++-12-dev && \
# flutter precache && \
# rm -rf /var/lib/apt/lists/*
# Pre-cache dependencies
RUN flutter precache && \
rm -rf /var/lib/apt/lists/*