You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2020. It is now read-only.
make docker-build does not work, because it is hardcoded to Go 1.10, which doesn't seem to have support for pulling dependencies. Updating GOVERSION to 1.14.2 in Makefile does the trick.
make docker does not work because there is no Dockerfile.
A minimal working Dockerfile might look like this (if you add the static target as a dependency for docker in Makefile)
FROM alpine:3.11
ADD bin/keycloak-gatekeeper /usr/bin/keycloak-gatekeeper
ENTRYPOINT /usr/bin/keycloak-gatekeeper
The text was updated successfully, but these errors were encountered:
I ended up rewriting a good portion of the Dockerfile. It now uses a
multi-stage build. It can accept source code to build, or unpack a premade
binary.
I also updated the Makefile
Fixes#609Fixes#541
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
make docker-build
does not work, because it is hardcoded to Go 1.10, which doesn't seem to have support for pulling dependencies. UpdatingGOVERSION
to 1.14.2 inMakefile
does the trick.make docker
does not work because there is noDockerfile
.A minimal working
Dockerfile
might look like this (if you add thestatic
target as a dependency fordocker
inMakefile
)The text was updated successfully, but these errors were encountered: