first commit
Some checks failed
/ build (push) Failing after 4s

This commit is contained in:
ange 2024-11-09 12:36:41 +08:00
commit 74d2fa3d03
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,12 @@
on: push
jobs:
build:
runs-on: debian
steps:
- uses: actions/checkout@v1
- uses: actions/kaniko@v1
with:
image: flutter:latest
password: "${{ secrets.PKGRW }}"
cache: false

26
Dockerfile Normal file
View File

@ -0,0 +1,26 @@
FROM docker.io/debian:12-slim as build
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
xz-utils \
&& rm -rf /var/lib/apt/lists/*
ADD https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.24.4-stable.tar.xz /flutter.tar.xz
RUN tar -C /opt/ -xJf /flutter.tar.xz
FROM docker.io/debian:12-slim
RUN useradd -m app
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
git \
sdkmanager \
unzip \
&& rm -rf /var/lib/apt/lists/*
RUN sdkmanager \
"build-tools;35.0.0" \
"cmdline-tools;9.0" \
"platform-tools;35.0.2" \
"platforms;android-35"
COPY --from=build --chown=app:app /opt/ /opt/
USER app
ENV PATH="/opt/flutter/bin:$PATH"
RUN flutter doctor -v