docker for ci
This commit is contained in:
parent
c322fd69c6
commit
36d6de217f
9
ci/images/flutter-node/Dockerfile
Normal file
9
ci/images/flutter-node/Dockerfile
Normal 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/*
|
||||||
9
ci/images/gradle-node/Dockerfile
Normal file
9
ci/images/gradle-node/Dockerfile
Normal 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/*
|
||||||
Loading…
Reference in a new issue