zip, unzip, wget, tar, gzip, xz, rsync

This commit is contained in:
2026-05-06 17:57:19 +03:00
parent b5e10495fe
commit d2288c3fbd
7 changed files with 109 additions and 7 deletions
+16 -1
View File
@@ -1,5 +1,20 @@
FROM node:24-bookworm-slim FROM node:24-bookworm-slim
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends docker.io bash git ca-certificates curl gnupg jq && \ apt-get install -y --no-install-recommends \
docker.io \
bash \
git \
ca-certificates \
gnupg \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz-utils \
rsync && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
+16 -1
View File
@@ -1,4 +1,19 @@
FROM golang:1.26-alpine FROM golang:1.26-alpine
ARG GOLANGCI_LINT_VERSION=v2.12.2 ARG GOLANGCI_LINT_VERSION=v2.12.2
RUN apk add --no-cache nodejs npm bash git ca-certificates curl jq RUN apk add --no-cache \
nodejs \
npm \
bash \
git \
ca-certificates \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz \
rsync
RUN curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b /usr/local/bin ${GOLANGCI_LINT_VERSION} RUN curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b /usr/local/bin ${GOLANGCI_LINT_VERSION}
+15 -1
View File
@@ -1,7 +1,21 @@
FROM golang:1.26-bookworm FROM golang:1.26-bookworm
ARG GOLANGCI_LINT_VERSION=v2.12.2 ARG GOLANGCI_LINT_VERSION=v2.12.2
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git jq && \ apt-get install -y --no-install-recommends \
ca-certificates \
gnupg \
bash \
git \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz-utils \
rsync && \
mkdir -p /etc/apt/keyrings && \ mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \ | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
+14 -1
View File
@@ -1,5 +1,18 @@
FROM node:24-bookworm FROM node:24-bookworm
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates curl git bash jq && \ apt-get install -y --no-install-recommends \
ca-certificates \
git \
bash \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz-utils \
rsync && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
+16 -1
View File
@@ -1,2 +1,17 @@
FROM node:24-alpine FROM node:24-alpine
RUN apk add --no-cache python3 py3-pip py3-virtualenv git bash ca-certificates curl jq RUN apk add --no-cache python3 \
py3-pip \
py3-virtualenv \
git \
bash \
ca-certificates \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz \
rsync
+15 -1
View File
@@ -1,7 +1,21 @@
FROM python:3.14-slim-bookworm FROM python:3.14-slim-bookworm
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git jq && \ apt-get install -y --no-install-recommends \
ca-certificates \
gnupg \
bash \
git \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz-utils \
rsync && \
mkdir -p /etc/apt/keyrings && \ mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \ | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
+17 -1
View File
@@ -1,6 +1,22 @@
FROM python:3.14-bookworm FROM python:3.14-bookworm
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git build-essential pkg-config python3-dev jq && \ apt-get install -y --no-install-recommends \
ca-certificates \
gnupg \
bash \
git \
build-essential \
pkg-config \
python3-dev \
curl \
wget \
jq \
zip \
unzip \
tar \
gzip \
xz-utils \
rsync && \
mkdir -p /etc/apt/keyrings && \ mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \ | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \