This commit is contained in:
JMARyA 2024-08-02 08:08:19 +02:00
parent 7b4c2a072a
commit 36a5d9059d
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -3,14 +3,9 @@ FROM ubuntu:22.04
# Install flutter dependencies # Install flutter dependencies
RUN apt-get update && apt-get install -y curl git wget unzip libgconf-2-4 gdb fonts-droid-fallback python3 xz-utils zip libglu1-mesa openjdk-8-jdk clang ninja-build pkg-config && apt-get clean RUN apt-get update && apt-get install -y curl git wget unzip libgconf-2-4 gdb fonts-droid-fallback python3 xz-utils zip libglu1-mesa openjdk-8-jdk clang ninja-build pkg-config && apt-get clean
# Set up new user
RUN useradd -ms /bin/bash developer
USER developer
WORKDIR /home/developer
# Clone the flutter repo # Clone the flutter repo
RUN git clone https://github.com/flutter/flutter.git /home/developer/flutter RUN git clone https://github.com/flutter/flutter.git /usr/bin/flutter
ENV PATH "$PATH:/home/developer/flutter/bin" ENV PATH "$PATH:/usr/bin/flutter/bin:/usr/bin/flutter/bin/cache/dart-sdk/bin"
# Enable flutter web # Enable flutter web
RUN flutter channel stable RUN flutter channel stable