Explorar el Código

changed git url

Spencer Gardner hace 7 años
padre
commit
66cc8e1383
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      Dockerfile

+ 3 - 3
Dockerfile

@@ -4,9 +4,9 @@ RUN apk add --update go git gcc g++
 
 ENV GOPATH /go
 
-RUN go get -u github.com/gogits/gogs
+RUN go get -u github.com/gogs/gogs
 
-WORKDIR $GOPATH/src/github.com/gogits/gogs
+WORKDIR $GOPATH/src/github.com/gogs/gogs
 
 RUN go build -tags "sqlite"
 
@@ -19,7 +19,7 @@ RUN apk add --update git openssh-keygen bash
 
 ENV USER root
 
-COPY --from=build /go/src/github.com/gogits/gogs /gogs
+COPY --from=build /go/src/github.com/gogs/gogs /gogs
 
 
 WORKDIR /gogs