| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:44fdb45bd3a8d9bd9c66b716aa0bb6ee11b6fbcceb59ee0eb54165785a35dfcb in / |
| CMD ["/bin/bash"] |
| /bin/sh -c apt-get update && apt-get install -y git curl unzip xz-utils nodejs |
| /bin/sh -c useradd -m flutteruser |
| USER flutteruser |
| WORKDIR /home/flutteruser |
| /bin/sh -c git clone --depth 1 https://github.com/flutter/flutter.git -b stable |
| WORKDIR /home/flutteruser/flutter |
| /bin/sh -c ./bin/flutter precache |
| ENV PATH="/home/flutteruser/flutter/bin:$PATH" |
| WORKDIR /app |