Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 396 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 396 Bytes

alpine

FROM ventx/alpine:3.19

ENV BASE_VERSION 0.0.2

ADD rootfs /

RUN apk update && \
  apk upgrade && \
  apk add \
    wget \
    ca-certificates \
    openssh-client \
    curl \
    bash \
    bash-completion \
    ncurses \
    gettext \
    tar \
    mg \
    unzip \
    jq \
    s6 \
    rsync && \
  rm -rf /var/cache/apk/* && \
  update-ca-certificates

CMD ["/bin/bash"]