未验证 提交 71b8d96a 编写于 作者: Z zryfish 提交者: GitHub

change image user kubesphere to group docker (#2487)

Signed-off-by: NJeff <zw0948@gmail.com>
上级 8241a0f9
# Copyright 2020 The KubeSphere Authors. All rights reserved.
# Use of this source code is governed by an Apache license
# that can be found in the LICENSE file.
FROM alpine:3.9
FROM alpine:3.11
ENV USER=kubesphere
ENV UID=1002
# docker group
ENV GID=998
COPY /bin/cmd/ks-apiserver /usr/local/bin/
RUN apk add --update ca-certificates && \
update-ca-certificates && \
adduser -D -g kubesphere -u 1002 kubesphere && \
chown -R kubesphere:kubesphere /usr/local/bin/ks-apiserver
RUN apk add --no-cache ca-certificates && \
addgroup --gid "$GID" "$USER" && \
adduser -D -g "" --ingroup "$USER" -u "$UID" "$USER" && \
chown -R kubesphere:"$GID" /usr/local/bin/ks-apiserver
EXPOSE 9090
USER kubesphere
CMD ["sh"]
CMD ["sh"]
\ No newline at end of file
# Copyright 2020 The KubeSphere Authors. All rights reserved.
# Use of this source code is governed by an Apache license
# that can be found in the LICENSE file.
FROM alpine:3.7
FROM alpine:3.11
ENV USER=kubesphere
ENV UID=1002
# docker group
ENV GID=998
COPY /bin/cmd/controller-manager /usr/local/bin/
RUN apk add --update ca-certificates && \
update-ca-certificates && \
adduser -D -g kubesphere -u 1002 kubesphere && \
chown -R kubesphere:kubesphere /usr/local/bin/controller-manager
USER kubesphere
RUN apk add --no-cache ca-certificates && \
addgroup --gid "$GID" "$USER" && \
adduser -D -g "" --ingroup "$USER" -u "$UID" "$USER" && \
chown -R kubesphere:"$GID" /usr/local/bin/controller-manager
EXPOSE 8443 8080
CMD controller-manager
USER kubesphere
CMD ["sh"]
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册