mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-22 10:58:57 +00:00
docker: Build outside GOPATH (fixes #5495)
This commit is contained in:
parent
5605877625
commit
1529563332
@ -1,6 +1,6 @@
|
|||||||
FROM golang:1.11 AS builder
|
FROM golang:1.11 AS builder
|
||||||
|
|
||||||
WORKDIR /go/src/github.com/syncthing/syncthing
|
WORKDIR /src
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
ENV CGO_ENABLED=0
|
ENV CGO_ENABLED=0
|
||||||
@ -16,7 +16,7 @@ VOLUME ["/var/syncthing"]
|
|||||||
|
|
||||||
RUN apk add --no-cache ca-certificates su-exec
|
RUN apk add --no-cache ca-certificates su-exec
|
||||||
|
|
||||||
COPY --from=builder /go/src/github.com/syncthing/syncthing/syncthing /bin/syncthing
|
COPY --from=builder /src/syncthing /bin/syncthing
|
||||||
|
|
||||||
ENV PUID=1000 PGID=1000
|
ENV PUID=1000 PGID=1000
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user