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.

59 lines
2.3 KiB

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