chore(docker): mv bin file to /cloudreve

mv bin file to /cloudreve

Signed-off-by: mritd <mritd@linux.com>
This commit is contained in:
mritd 2020-09-02 20:54:20 +08:00
parent f055545200
commit adce5a4354
No known key found for this signature in database
GPG key ID: 98C41327E6D3E645

View file

@ -1,3 +1,4 @@
# build frontend
FROM node:lts-alpine3.12 AS fe-builder
COPY ./assets /assets
@ -9,6 +10,7 @@ RUN set -ex \
&& yarn install \
&& yarn run build
# build backend
FROM golang:1.15.0-alpine3.12 AS be-builder
ENV GO111MODULE on
@ -21,7 +23,7 @@ WORKDIR /go/src/github.com/HFO4/cloudreve
RUN set -ex \
&& apk upgrade \
&& apk add git \
&& apk add gcc libc-dev git \
&& export COMMIT_SHA=$(git rev-parse --short HEAD) \
&& export VERSION=$(git describe --tags) \
&& (cd && go get github.com/rakyll/statik) \
@ -30,14 +32,16 @@ RUN set -ex \
-X 'github.com/HFO4/cloudreve/pkg/conf.LastCommit=${COMMIT_SHA}'\
-w -s"
# build final image
FROM alpine:3.12 AS dist
LABEL maintainer="mritd <mritd@linux.com>"
COPY --from=be-builder /go/bin/cloudreve /cloudreve/cloudreve
RUN apk upgrade \
&& apk add tzdata \
&& apk add bash tzdata \
&& ln -s /cloudreve/cloudreve /usr/bin/cloudreve \
&& rm -rf /var/cache/apk/*
COPY --from=be-builder /go/bin/cloudreve /usr/bin/cloudreve
ENTRYPOINT ["cloudreve"]