Skip to content

geekswamp/docker-flutter

Repository files navigation

Publish Registry to ghcr.io

Docker Flutter

You can run it using CI or locally via Docker.

Usage

Dockerfile

Use as base image in Dockerfile

FROM ghcr.io/geekswamp/flutter:stable

GitLab CI

Use as base image in .gitlab-ci.yml

image: ghcr.io/geekswamp/flutter:stable

stages:
  - build

build:
  stage: build
  ...