Skip to content

Commit 9ca24e7

Browse files
committed
feat: add more tools to werf images; update werf images
Signed-off-by: Ilya Lesikov <ilya@lesikov.com>
1 parent e08a901 commit 9ca24e7

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

scripts/werf-in-image/alpine.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM alpine:3.15
1+
FROM alpine:3.18
22

3-
RUN apk add --no-cache fuse-overlayfs git shadow-uidmap libcap
3+
RUN apk add --no-cache fuse-overlayfs git shadow-uidmap libcap git-lfs curl gnupg nano jq bash make ca-certificates openssh-client iproute2-ss busybox-extras
44

55
# Fix messed up setuid/setgid capabilities.
66
RUN setcap cap_setuid+ep /usr/bin/newuidmap && \

scripts/werf-in-image/centos.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM quay.io/centos/centos:stream9
22

3-
RUN dnf -y install fuse-overlayfs git && \
3+
RUN dnf -y install fuse-overlayfs git git-lfs gnupg nano jq bash make ca-certificates openssh-clients telnet iputils iproute dnsutils && \
44
dnf clean all && rm -rf /var/cache /var/log/dnf* /var/log/yum.*
55

66
# Fix messed up setuid/setgid capabilities.

scripts/werf-in-image/fedora.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM fedora:35
1+
FROM fedora:38
22

3-
RUN dnf -y install fuse-overlayfs git && \
3+
RUN dnf -y install fuse-overlayfs git git-lfs gnupg nano jq bash make ca-certificates openssh-clients telnet iputils iproute dnsutils && \
44
dnf clean all && rm -rf /var/cache /var/log/dnf* /var/log/yum.*
55

66
# Fix messed up setuid/setgid capabilities.

scripts/werf-in-image/ubuntu.Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:22.04
22
ENV DEBIAN_FRONTEND="noninteractive"
33

4-
RUN apt-get -y update && apt-get -y install fuse-overlayfs git uidmap libcap2-bin && \
4+
RUN apt-get -y update && \
5+
apt-get -y install fuse-overlayfs git uidmap libcap2-bin git-lfs curl gnupg nano jq bash make ca-certificates openssh-client iproute2 telnet iputils-ping dnsutils && \
56
rm -rf /var/cache/apt/* /var/lib/apt/lists/* /var/log/*
67

78
# Fix messed up setuid/setgid capabilities.

0 commit comments

Comments
 (0)