mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-06-29 16:22:46 +02:00
38 lines
No EOL
849 B
Text
38 lines
No EOL
849 B
Text
FROM golang:1.24-alpine
|
|
|
|
# Install necessary tools
|
|
RUN apk add --no-cache \
|
|
curl \
|
|
netcat-openbsd \
|
|
bash \
|
|
git \
|
|
build-base \
|
|
ca-certificates
|
|
|
|
# Set working directory
|
|
WORKDIR /workspace
|
|
|
|
# Copy go mod files first for better caching
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
# Copy only the necessary source code for building and testing
|
|
COPY weed/ ./weed/
|
|
COPY test/mq/integration/ ./test/mq/integration/
|
|
|
|
# Build the weed binary for testing (optional - tests can use external cluster)
|
|
RUN cd weed && CGO_ENABLED=1 GOOS=linux go build -o ../weed .
|
|
|
|
# Create test results directory
|
|
RUN mkdir -p /test-results
|
|
|
|
# Set up environment
|
|
ENV CGO_ENABLED=1
|
|
ENV GOOS=linux
|
|
ENV GO111MODULE=on
|
|
|
|
# Default working directory for tests
|
|
WORKDIR /workspace
|
|
|
|
# Entry point for running tests - use explicit bash
|
|
ENTRYPOINT ["/bin/bash", "-c"] |