10 lines
350 B
Docker
10 lines
350 B
Docker
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/*
|