https://github.com/benzbrake/docker-alpine
https://github.com/benzbrake/docker-alpine
docker-image
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/benzbrake/docker-alpine
- Owner: benzBrake
- Created: 2020-07-11T11:39:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T01:27:47.000Z (about 3 years ago)
- Last Synced: 2025-02-10T06:28:36.476Z (over 1 year ago)
- Topics: docker-image
- Language: Dockerfile
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker-Alpine

## Description
This is possible thanks to the work from [uggedal](https://github.com/uggedal) on packaging Alpine Linux for Docker.
This project is now build on top of official [Alpine Linux](https://hub.docker.com/_/) image, only including a few convenience packages.
## Supported architecture
- arm
- s390x
- ppc64le
- amd64
- arm64
- 386
## Supported tags
- latest
- 3.17
- 3.16
- 3.15
- 3.14
- 3.13
- 3.12
- 3.11
- 3.10
- 3.9
- 3.8
- 3.7
## Included packages
To get you started, a set of packages have been integrated:
- curl
- ca-certificates
## Time Zone
China Standard Time
# How to use this image
## Usage
Use like you would any other base image:
```
FROM benzbrake/alpine:3.7
RUN apk add --no-cache mysql-client
ENTRYPOINT ["mysql"]
```