docker for ci

This commit is contained in:
Oskar Kapala 2026-01-16 14:21:50 +01:00
parent c322fd69c6
commit 36d6de217f
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,9 @@
FROM ghcr.io/cirruslabs/flutter:stable
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git ca-certificates curl \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& node --version && npm --version && git --version \
&& rm -rf /var/lib/apt/lists/*

View file

@ -0,0 +1,9 @@
FROM gradle:8.7-jdk21
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git ca-certificates curl \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& node --version && npm --version && git --version \
&& rm -rf /var/lib/apt/lists/*