forked from cicirello/alpine-plus-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (18 loc) · 888 Bytes
/
Dockerfile
File metadata and controls
18 lines (18 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (c) 2020 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.12.3
LABEL maintainer="development@cicirello.org" \
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, development@cicirello.org, https://www.cicirello.org/" \
org.opencontainers.image.source="https://github.com/cicirello/alpine-plus-plus" \
org.opencontainers.image.title="alpine-plus-plus"
RUN apk update && apk add \
bash \
coreutils \
findutils \
gawk \
git \
&& rm -rf /var/cache/apk/*