rclone-rclone
SUCCESS
5m 44s
History Source
SummaryIterations1Transcript3Dockerfile
01Iteration 1
WRITEWriteFile· step #1
0s
Dockerfile1182 bytes written
text54 lines · 1182 chars
FROM golang:alpine AS builder

ARG CGO_ENABLED=0

WORKDIR /go/src/github.com/rclone/rclone/

RUN echo "**** Set Go Environment Variables ****" && \
    go env -w GOCACHE=/root/.cache/go-build

RUN echo "**** Install Dependencies ****" && \
    apk add --no-cache \
        make \
        bash \
        gawk \
        git

COPY go.mod .
COPY go.sum .

RUN echo "**** Download Go Dependencies ****" && \
    go mod download -x

RUN echo "**** Verify Go Dependencies ****" && \
    go mod verify

COPY . .

RUN --mount=type=cache,target=/root/.cache/go-build,sharing=locked \
    echo "**** Build Binary ****" && \
    make

RUN echo "**** Print Version Binary ****" && \
    ./rclone version

# Begin final image
FROM alpine:latest

RUN echo "**** Install Dependencies ****" && \
    apk add --no-cache \
        ca-certificates \
        fuse3 \
        tzdata && \
    echo "Enable user_allow_other in fuse" && \
    echo "user_allow_other" >> /etc/fuse.conf

COPY --from=builder /go/src/github.com/rclone/rclone/rclone /usr/local/bin/

RUN addgroup -g 1009 rclone && adduser -u 1009 -Ds /bin/sh -G rclone rclone

ENTRYPOINT [ "rclone" ]

WORKDIR /data
ENV XDG_CONFIG_HOME=/config
WRITEWriteFile· step #2
0s
.dockerignore93 bytes written
dockerignore12 lines · 93 chars
git
node_modules
vendor
*.log
*.tmp
*.bak
Dockerfile
.dockerignore
build/
docs/
docs_public/
VERIFYVerifyBuild· step #3
4m 49s
VerifyBuildaccepted
Concerns: BuildKit-specific RUN --mount syntax may fail if Docker is not configured to use BuildKit (DOCKER_BUILDKIT=1 or docker buildx)., Runtime runs as root; consider adding a non-root user for better security practices., Fuse mounting for rclone requires host privileges (e.g., --cap-add SYS_ADMIN and /dev/fuse access) when actually mounting; smoke tests won't verify mounting capability in this config.
Smoke [PASS]: /usr/local/bin/rclone version
Smoke [PASS]: test -x /usr/local/bin/rclone