mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-08-16 17:12:46 +02:00
18 lines
No EOL
304 B
Text
18 lines
No EOL
304 B
Text
FROM alpine:latest
|
|
|
|
# Install required packages
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
fuse \
|
|
curl \
|
|
jq
|
|
|
|
# Copy our locally built binary
|
|
COPY weed-local /usr/bin/weed
|
|
RUN chmod +x /usr/bin/weed
|
|
|
|
# Create working directory
|
|
WORKDIR /data
|
|
|
|
# Default command
|
|
ENTRYPOINT ["/usr/bin/weed"] |