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.
33 lines
779 B
33 lines
779 B
# Multi-stage build for SeaweedFS S3 with IAM
|
|
FROM golang:1.23-alpine AS builder
|
|
|
|
# Install build dependencies
|
|
RUN apk add --no-cache git make curl wget
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Build SeaweedFS with IAM integration
|
|
RUN cd weed && go build -o /usr/local/bin/weed
|
|
|
|
# Final runtime image
|
|
FROM alpine:latest
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache ca-certificates wget curl
|
|
|
|
# Copy weed binary
|
|
COPY --from=builder /usr/local/bin/weed /usr/local/bin/weed
|
|
|
|
# Create directories
|
|
RUN mkdir -p /etc/seaweedfs /data
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD wget --quiet --tries=1 --spider http://localhost:8333/ || exit 1
|
|
|
|
# Set entrypoint
|
|
ENTRYPOINT ["/usr/local/bin/weed"]
|