aboutsummaryrefslogtreecommitdiff
path: root/docker/admin_integration/Dockerfile.local
blob: 9795b6ea3648567de6156509cee0977571b7c777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]