Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 539 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 539 Bytes

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
  ...