forked from minio/minio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.alpine.cicd
63 lines (46 loc) · 1.91 KB
/
Dockerfile.alpine.cicd
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
FROM golang:alpine as builder
RUN apk update && apk upgrade
RUN apk add --no-cache bash gcc libc-dev make libc6-compat gcompat perl git
WORKDIR /build
COPY . .
RUN chmod +x /usr/bin/make
RUN make all
FROM alpine:3.18.2
RUN apk update && apk upgrade
RUN apk add su-exec minisign bash bash-completion curl --no-cache
ARG TARGETARCH
ARG RELEASE
LABEL name="MinIO" \
vendor="MinIO Inc <[email protected]>" \
maintainer="MinIO Inc <[email protected]>" \
alpine_maintainer="Nikolay Galko <[email protected]>" \
version="${RELEASE}" \
release="${RELEASE}" \
summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
description="MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads."
ENV MINIO_ACCESS_KEY_FILE=access_key \
MINIO_SECRET_KEY_FILE=secret_key \
MINIO_ROOT_USER_FILE=access_key \
MINIO_ROOT_USER=access_key \
MINIO_ROOT_PASSWORD_FILE=secret_key \
MINIO_KMS_SECRET_KEY_FILE=kms_master_key \
MINIO_UPDATE_MINISIGN_PUBKEY="RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav" \
MINIO_CONFIG_ENV_FILE=config.env \
MINIO_SITE_REGION=minio_site_region \
MINIO_SITE_NAME=minio_site_name \
TIMEZONE=Europe/Moscow \
MINIO_BROWSER=on \
PATH=/opt/bin:$PATH
COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
RUN mkdir -p /opt/bin && \
chmod -R 777 /opt/bin
# Downloading Minio
COPY --from=builder build/minio /opt/bin/minio
RUN chmod +x /opt/bin/minio && \
chmod +x /usr/bin/docker-entrypoint.sh
RUN addgroup minio && \
adduser -s /bin/false -G minio -S -D minio
EXPOSE 9000
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
VOLUME ["/data"]
CMD ["minio"]