-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
17 lines (17 loc) · 857 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) 2020-2024 Vincent A. Cicirello
# https://www.cicirello.org
# Source repository: https://github.com/cicirello/alpine-plus-plus
# Source licensed under the MIT License: https://github.com/cicirello/alpine-plus-plus/blob/master/LICENSE
FROM alpine:3.21.0
LABEL maintainer="[email protected]" \
org.opencontainers.image.description="A lightweight docker image for shell scripting and git, \
consisting of Alpine Linux with the addition of bash, coreutils, findutils, gawk, and git." \
org.opencontainers.image.authors="Vincent A Cicirello, [email protected], https://www.cicirello.org/" \
org.opencontainers.image.source="https://github.com/cicirello/alpine-plus-plus" \
org.opencontainers.image.title="alpine-plus-plus"
RUN apk --no-cache add \
bash \
coreutils \
findutils \
gawk \
git