OSDN Git Service

update
authorChengcheng Zhang <943420582@qq.com>
Fri, 6 Dec 2019 10:46:42 +0000 (18:46 +0800)
committerChengcheng Zhang <943420582@qq.com>
Fri, 6 Dec 2019 10:46:42 +0000 (18:46 +0800)
docker/fed
docker/vapor

index d31b68c..ad7a4e0 100644 (file)
@@ -3,7 +3,7 @@ FROM golang:1.12-alpine as builder
 
 RUN apk add --no-cache make git
 
-ADD . /go/src/github.com/vapor
+ADD . /go/src/github.com/bytom/vapor
 WORKDIR /go/src/github.com/bytom/vapor/cmd/fedd
 
 RUN GOOS=linux CGO_ENABLED=0 go build -ldflags="-s -w" -installsuffix cgo -o fed main.go
index fdd558a..d1d7e29 100644 (file)
@@ -3,8 +3,8 @@ FROM golang:1.12-alpine as builder
 
 RUN apk add --no-cache make git
 
-ADD . /go/src/github.com/vapor
-RUN cd /go/src/github.com/vapor && make vapord && make vaporcli
+ADD . /go/src/github.com/bytom/vapor
+RUN cd /go/src/github.com/bytom/vapor && make vapord && make vaporcli
 
 # Pull Vapor into a second stage deploy alpine container
 FROM alpine:latest