I think there is something going on with the compa...
# ory-selfhosting
g
I think there is something going on with the companies direction for OSS and self-hosting. The current HEAD is broken and using an internal implementation of a package that isnt accessible. It seems like they are trying to keep anyone from building the current 2.4.0 version themselves... thoughts @magnificent-energy-493 @bland-eye-99092?
s
works for me?
Copy code
➜  hydra git:(master) git rev-parse HEAD       
9a803533fe54018da1fe7108db780ca1525ea654
➜  hydra git:(master) go build -o $(mktemp) .
➜  hydra git:(master) echo $?                
0
g
what are you seeing when you run
make docker
Copy code
#13 [builder 6/8] RUN go mod download
#13 3.147 go: <http://github.com/ory/x@v0.0.724|github.com/ory/x@v0.0.724> (replaced by ./oryx): reading oryx/go.mod: open /go/src/github.com/ory/hydra/oryx/go.mod: no such file or directory
#13 ERROR: process "/bin/sh -c go mod download" did not complete successfully: exit code: 1
s
I see, the docker file with the build seems broken. You should be able to get an image using
go build . && docker build -f .docker/Dockerfile-distroless-static
.
g
ok. thanks. do you think the makefile will reflect soon?