An open API service indexing awesome lists of open source software.

https://github.com/ventx/alpine

alpine+ container
https://github.com/ventx/alpine

Last synced: about 1 year ago
JSON representation

alpine+ container

Awesome Lists containing this project

README

          

# 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"]
```