forked from jumpserver/koko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile-ee
More file actions
24 lines (20 loc) · 731 Bytes
/
Copy pathDockerfile-ee
File metadata and controls
24 lines (20 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ARG VERSION=dev
FROM jumpserver/koko:${VERSION}-ce
ARG TARGETARCH
ARG DEPENDENCIES=" \
curl \
git \
git-lfs \
iputils-ping \
openssh-client \
telnet \
unzip \
vim \
wget \
xz-utils"
ARG APT_MIRROR=http://deb.debian.org
RUN set -ex \
&& sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y --no-install-recommends ${DEPENDENCIES} \
&& apt-get clean