-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlpine.Dockerfile
More file actions
121 lines (115 loc) · 3.49 KB
/
Copy pathAlpine.Dockerfile
File metadata and controls
121 lines (115 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# syntax = devthefuture/dockerfile-x
FROM alpine:3.15 AS alpine-15-base
ENV ALPINE_VERSION=3.15
ARG BASE_PACKAGES="\
bash bash-completion \
pv bc \
less util-linux-misc util-linux-bash-completion \
bind-tools iputils net-tools \
git openssh-client ca-certificates \
wget curl \
tar gzip xz bzip2 \
cronie flock \
nano vim \
figlet ncurses \
runuser runit \
dos2unix patch"
INCLUDE ./Alpine.fragment.Dockerfile
FROM alpine-15-base AS builder-15-base
ARG BUILDER_PACKAGES="build-base linux-headers openssl-dev zlib-dev"
RUN apk add --no-cache $BUILDER_PACKAGES
FROM alpine:3.18 AS alpine-18-base
ENV ALPINE_VERSION=3.18
ARG BASE_PACKAGES="\
bash bash-completion \
pv bc btop \
less util-linux-misc util-linux-bash-completion \
bind-tools iputils-ping net-tools traceroute \
git openssh-client ca-certificates \
wget curl \
tar gzip xz bzip2 \
cronie flock \
nano vim \
figlet ncurses \
runuser runit \
dos2unix patch"
INCLUDE ./Alpine.fragment.Dockerfile
FROM alpine-18-base AS builder-18-base
ARG BUILDER_PACKAGES="build-base linux-headers openssl-dev zlib-dev"
RUN apk add --no-cache $BUILDER_PACKAGES
FROM alpine:3.21 AS alpine-21-base
ENV ALPINE_VERSION=3.21
ARG BASE_PACKAGES="\
bash bash-completion \
pv bc btop \
less util-linux-misc util-linux-bash-completion \
bind-tools iputils-ping net-tools traceroute \
git openssh-client ca-certificates \
wget curl \
tar gzip xz bzip2 \
cronie flock \
nano vim \
figlet ncurses \
runuser runit \
dos2unix patch"
INCLUDE ./Alpine.fragment.Dockerfile
FROM alpine-21-base AS builder-21-base
ARG BUILDER_PACKAGES="build-base linux-headers openssl-dev zlib-dev"
RUN apk add --no-cache $BUILDER_PACKAGES
FROM alpine:3.22 AS alpine-22-base
ENV ALPINE_VERSION=3.22
ARG BASE_PACKAGES="\
bash bash-completion \
pv bc btop \
less util-linux-misc util-linux-bash-completion \
bind-tools iputils-ping net-tools traceroute \
git openssh-client ca-certificates \
wget curl \
tar gzip xz bzip2 \
cronie flock \
nano vim \
figlet ncurses \
runuser runit \
dos2unix patch"
INCLUDE ./Alpine.fragment.Dockerfile
FROM alpine-22-base AS builder-22-base
ARG BUILDER_PACKAGES="build-base linux-headers openssl-dev zlib-dev"
RUN apk add --no-cache $BUILDER_PACKAGES
FROM alpine:3.23 AS alpine-23-base
ENV ALPINE_VERSION=3.23
ARG BASE_PACKAGES="\
bash bash-completion \
pv bc btop \
less util-linux-misc util-linux-bash-completion \
bind-tools iputils-ping net-tools traceroute \
git openssh-client ca-certificates \
wget curl \
tar gzip xz bzip2 \
cronie flock \
nano vim \
figlet ncurses \
runuser runit \
dos2unix patch"
INCLUDE ./Alpine.fragment.Dockerfile
FROM alpine-23-base AS builder-23-base
ARG BUILDER_PACKAGES="build-base linux-headers openssl-dev zlib-dev"
RUN apk add --no-cache $BUILDER_PACKAGES
FROM alpine:edge AS alpine-edge-base
ENV ALPINE_VERSION=3.22
ARG BASE_PACKAGES="\
bash bash-completion \
pv bc btop \
less util-linux-misc util-linux-bash-completion \
bind-tools iputils-ping net-tools traceroute \
git openssh-client ca-certificates \
wget curl \
tar gzip xz bzip2 \
cronie flock \
nano vim \
figlet ncurses \
runuser runit \
dos2unix patch"
INCLUDE ./Alpine.fragment.Dockerfile
FROM alpine-edge-base AS builder-edge-base
ARG BUILDER_PACKAGES="build-base linux-headers openssl-dev zlib-dev"
RUN apk add --no-cache $BUILDER_PACKAGES