https://github.com/ventx/alpine
alpine+ container
https://github.com/ventx/alpine
Last synced: about 1 year ago
JSON representation
alpine+ container
- Host: GitHub
- URL: https://github.com/ventx/alpine
- Owner: ventx
- Created: 2017-07-04T17:29:40.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-22T14:20:27.000Z (about 2 years ago)
- Last Synced: 2024-12-25T16:12:34.327Z (over 1 year ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"]
```