flutter/Dockerfile

20 lines
605 B
Text
Raw Normal View History

2024-08-01 08:43:19 +00:00
FROM ubuntu:22.04
2024-08-01 08:44:39 +00:00
# Install flutter dependencies
2024-08-01 09:03:21 +00:00
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
2024-08-01 08:44:39 +00:00
2024-08-01 08:43:19 +00:00
# Set up new user
RUN useradd -ms /bin/bash developer
USER developer
WORKDIR /home/developer
# Clone the flutter repo
RUN git clone https://github.com/flutter/flutter.git /home/developer/flutter
ENV PATH "$PATH:/home/developer/flutter/bin"
# Enable flutter web
RUN flutter channel stable
RUN flutter config --enable-web
RUN flutter upgrade
RUN flutter doctor