14 lines
344 B
Docker
14 lines
344 B
Docker
FROM debian:trixie-backports
|
|
|
|
RUN apt-get update && apt-get install -y git curl zip unzip
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
# Node.js 22
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
|
|
|
WORKDIR /app
|