Add some comments
This commit is contained in:
parent
5f8eeb97d4
commit
5b5ec37de6
@ -1,19 +1,24 @@
|
|||||||
variables:
|
|
||||||
- &flutter_version '3.13.6'
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
docker-build:
|
docker-build:
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
settings:
|
settings:
|
||||||
|
# Push to my registry
|
||||||
repo: git.polynom.me/papatutuwawa/docker-flutter
|
repo: git.polynom.me/papatutuwawa/docker-flutter
|
||||||
registry: git.polynom.me
|
registry: git.polynom.me
|
||||||
platforms: linux/arm64/v8
|
|
||||||
tag: *flutter_version
|
|
||||||
build_args:
|
|
||||||
- FLUTTER_VERSION=3.13.6
|
|
||||||
auto_tag: true
|
|
||||||
username:
|
username:
|
||||||
from_secret: repository_username
|
from_secret: repository_username
|
||||||
password:
|
password:
|
||||||
from_secret: repository_password
|
from_secret: repository_password
|
||||||
|
# Build only for ARM64
|
||||||
|
platforms: linux/arm64/v8
|
||||||
|
# Build the correct version
|
||||||
|
build_args:
|
||||||
|
- FLUTTER_VERSION=3.13.6
|
||||||
|
# Tag :<version> and :latest
|
||||||
|
tag: 3.13.6
|
||||||
|
auto_tag: true
|
||||||
|
# Save storage
|
||||||
|
purge: true
|
||||||
secrets: [ repository_username, repository_password ]
|
secrets: [ repository_username, repository_password ]
|
||||||
|
when:
|
||||||
|
event: [push]
|
||||||
|
13
Dockerfile
13
Dockerfile
@ -3,18 +3,17 @@ FROM debian:bookworm-20230919-slim
|
|||||||
# The version of Flutter to use
|
# The version of Flutter to use
|
||||||
ARG FLUTTER_VERSION
|
ARG FLUTTER_VERSION
|
||||||
|
|
||||||
RUN echo $FLUTTER_VERSION
|
# Add Flutter to the PATH
|
||||||
|
|
||||||
# Set environment variables
|
|
||||||
ENV PATH="$PATH:/opt/flutter/bin"
|
ENV PATH="$PATH:/opt/flutter/bin"
|
||||||
|
|
||||||
|
# It turns out that the provided tarballs all expect x86 and thus bundle
|
||||||
|
# the x86 build of Dart, which obviously does not work. Thus, we have to
|
||||||
|
# fetch the repo from Github and use that instead. Then Flutter fetches the
|
||||||
|
# correct Dart build and everything should work.
|
||||||
RUN apt-get update && apt-get install -y git curl unzip
|
RUN apt-get update && apt-get install -y git curl unzip
|
||||||
RUN mkdir -p /opt && \
|
RUN mkdir -p /opt && \
|
||||||
git clone --depth=1 -b $FLUTTER_VERSION https://github.com/flutter/flutter.git /opt/flutter
|
git clone --depth=1 -b $FLUTTER_VERSION https://github.com/flutter/flutter.git /opt/flutter
|
||||||
|
|
||||||
# Install Flutter's Linux dependencies and pre-cache dependencies
|
# Pre-cache dependencies
|
||||||
#RUN apt-get install clang cmake ninja-build pkg-config libgtk3-dev liblzma-dev libstdc++-12-dev && \
|
|
||||||
# flutter precache && \
|
|
||||||
# rm -rf /var/lib/apt/lists/*
|
|
||||||
RUN flutter precache && \
|
RUN flutter precache && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
Loading…
Reference in New Issue
Block a user