Sign inSign up

brianegan/flutter

By brianegan

Updated about 8 years ago

A Docker container with Dart + content_shell + Flutter used for testing

Image
2

1.1K

Dockerfile
FROM ubuntu:latest

MAINTAINER [email protected]

WORKDIR /

RUN apt-get update && \
    apt-get install -y lcov git-core curl unzip libglu1 && \
    git clone --branch v0.5.1 --depth=1 https://github.com/flutter/flutter.git && \
    /flutter/bin/flutter doctor && \
    apt-get remove -y curl unzip && \
    apt autoremove -y && \
    rm -rf /var/lib/apt/lists/*

ENV PATH $PATH:/flutter/bin/cache/dart-sdk/bin:/flutter/bin