-
Notifications
You must be signed in to change notification settings - Fork 750
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add platforms: linux/amd64,linux/arm64
- Loading branch information
sjqzhang
committed
Sep 26, 2024
1 parent
7956318
commit eb5c732
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
FROM --platform=$BUILDPLATFORM golang:1.18 AS builder | ||
MAINTAINER s_jqzhang <[email protected]> | ||
ARG VERSION=1.1.7 | ||
RUN set -xe; \ | ||
apk update; \ | ||
apk add --no-cache --virtual .build-deps \ | ||
git; \ | ||
mkdir -p /root/repo ; cd /root/repo ; \ | ||
git clone https://github.com/sjqzhang/go-fastdfs ; \ | ||
cd go-fastdfs; mv vendor src ; mv src .. ; cd .. ; mv go-fastdfs src/github.com/sjqzhang/ ; export GOPATH=/root/repo ; cd src/github.com/sjqzhang/go-fastdfs ; \ | ||
export GO111MODULE="off"; \ | ||
CGO_ENABLED=0 GOOS=linux go build GOARCH=$TARGETARCH -a -installsuffix cgo -o fileserver; \ | ||
ls -lh .; | ||
FROM registry.cn-hangzhou.aliyuncs.com/prince/alpine-bash | ||
|
||
COPY --from=builder /root/repo/src/github.com/sjqzhang/go-fastdfs/fileserver / | ||
|
||
ENV INSTALL_DIR /usr/local/go-fastdfs | ||
|
||
ENV PATH $PATH:$INSTALL_DIR/ | ||
|
||
ENV GO_FASTDFS_DIR $INSTALL_DIR/data | ||
|
||
RUN set -xe; \ | ||
mkdir -p $GO_FASTDFS_DIR; \ | ||
mkdir -p $GO_FASTDFS_DIR/conf; \ | ||
mkdir -p $GO_FASTDFS_DIR/data; \ | ||
mkdir -p $GO_FASTDFS_DIR/files; \ | ||
mkdir -p $GO_FASTDFS_DIR/log; \ | ||
mkdir -p $INSTALL_DIR; \ | ||
mv /fileserver $INSTALL_DIR/; \ | ||
chmod +x $INSTALL_DIR/fileserver; | ||
|
||
WORKDIR $INSTALL_DIR | ||
|
||
VOLUME $GO_FASTDFS_DIR | ||
|
||
CMD ["fileserver", "server" , "${OPTS}"] |