You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
3.0 KiB

  1. FROM golang:1.23-alpine AS build
  2. ARG TARGETARCH
  3. ARG RELEASE
  4. ENV GOPATH=/go
  5. ENV CGO_ENABLED=0
  6. WORKDIR /build
  7. # Install curl and minisign
  8. RUN apk add -U --no-cache ca-certificates && \
  9. apk add -U --no-cache curl && \
  10. apk add -U --no-cache bash && \
  11. go install aead.dev/minisign/cmd/minisign@v0.2.1
  12. # Download minio binary and signature files
  13. RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \
  14. curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
  15. curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.sha256sum -o /go/bin/minio.sha256sum && \
  16. chmod +x /go/bin/minio
  17. # Download mc binary and signature files
  18. RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
  19. curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
  20. curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.sha256sum -o /go/bin/mc.sha256sum && \
  21. chmod +x /go/bin/mc
  22. # Verify binary signature using public key "RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGavRUN"
  23. RUN minisign -Vqm /go/bin/minio -x /go/bin/minio.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav && \
  24. minisign -Vqm /go/bin/mc -x /go/bin/mc.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav
  25. COPY dockerscripts/download-static-curl.sh /build/download-static-curl
  26. RUN chmod +x /build/download-static-curl && \
  27. /build/download-static-curl
  28. FROM registry.access.redhat.com/ubi9/ubi-micro:latest
  29. ARG RELEASE
  30. LABEL name="MinIO" \
  31. vendor="MinIO Inc <dev@min.io>" \
  32. maintainer="MinIO Inc <dev@min.io>" \
  33. version="${RELEASE}" \
  34. release="${RELEASE}" \
  35. summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
  36. 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."
  37. ENV MINIO_ACCESS_KEY_FILE=access_key \
  38. MINIO_SECRET_KEY_FILE=secret_key \
  39. MINIO_ROOT_USER_FILE=access_key \
  40. MINIO_ROOT_PASSWORD_FILE=secret_key \
  41. MINIO_KMS_SECRET_KEY_FILE=kms_master_key \
  42. MINIO_UPDATE_MINISIGN_PUBKEY="RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav" \
  43. MINIO_CONFIG_ENV_FILE=config.env \
  44. MC_CONFIG_DIR=/tmp/.mc
  45. RUN chmod -R 777 /usr/bin
  46. COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
  47. COPY --from=build /go/bin/minio* /usr/bin/
  48. COPY --from=build /go/bin/mc* /usr/bin/
  49. COPY --from=build /go/bin/curl* /usr/bin/
  50. COPY CREDITS /licenses/CREDITS
  51. COPY LICENSE /licenses/LICENSE
  52. COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
  53. EXPOSE 9000
  54. VOLUME ["/data"]
  55. ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
  56. CMD ["minio"]